Developer Resources
API Documentation
Integrate Lambda Finance data directly into your applications via REST APIs, or use Claude Desktop and Claude Code with our MCP server for AI-powered financial analysis.
Quick Start
Get Your API Key
Sign in and generate an API key from your dashboard.
Configure Your Client
Add the Lambda Finance MCP server to your Claude configuration.
Start Querying
Ask Claude about stocks, earnings, news, and financial data.
{
"mcpServers": {
"lambda-finance": {
"type": "streamable-http",
"url": "https://www.lambdafin.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Available Endpoints
10 powerful tools for financial data analysis. Click "View Example" to see request and response formats.
get_metrics Query Get financial metrics for up to 5 stock symbols including price, P/E ratio, EPS, market cap, and more.
Parameters
symbolsList[str] Yes Stock tickers (max 5)get_earnings_call Query Retrieve earnings call transcripts for a specific company and quarter.
Parameters
symbolstr Yes Stock ticker symbolyearint Yes Fiscal yearquarterint Yes Fiscal quarter (1-4)get_news Query Fetch recent news articles for a specific ticker or date range.
Parameters
symbolstr No Stock ticker symbolfrom_datestr No Start date (YYYY-MM-DD)to_datestr No End date (YYYY-MM-DD)limitint No Max articles to return (default: 10)get_financial_statement Query Retrieve income statement, balance sheet, or cash flow statement data.
Parameters
symbolstr Yes Stock ticker symbolstatement_typesList[str] Yes Types: income, balance, cashflowyearint No Specific fiscal yearperiodstr No annual or quarterlysearch_news Query Search news articles by keyword or topic across all sources.
Parameters
querystr Yes Search keywords or phrasefrom_datestr No Start date (YYYY-MM-DD)limitint No Max articles to return (default: 20)get_vertical_analysis Analysis Perform common-size financial analysis, expressing line items as percentages.
Parameters
symbolstr Yes Stock ticker symbolstatement_typestr Yes income, balance, or cashflowyearsint No Number of years to analyze (default: 3)make_graph Analysis Generate time-series chart data for visualization purposes.
Parameters
symbolstr Yes Stock ticker symbolmetricsList[str] Yes Metrics to chart (e.g., revenue, netIncome)periodstr No annual or quarterlyyearsint No Number of years of dataget_statement_variables Utility List all available metrics and variables for financial statements.
Parameters
statement_typestr No Filter by statement typescreen_stocks Screening Filter and screen stocks based on multiple financial criteria.
Parameters
filtersDict Yes Filter criteria (e.g., marketCap, peRatio)sort_bystr No Field to sort results bylimitint No Max results to return (default: 50)get_screening_fields Utility List all available fields that can be used for stock screening.
Authentication
All API requests require authentication via an API key. Include your key in the X-API-Key header with each request.
curl -X POST https://www.lambdafin.com/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"method": "get_metrics", "params": {"symbols": ["AAPL"]}}'