Power Your Apps with Real-Time & Historical Stock Data
Access over 511,000+ stock tickers like AAPL, TSLA, and GOOGL with the FinanceFlowAPI Stock Tickers API.
Get Your API Key Discover DocsWhy Choose the FinanceFlowAPI Stock Tickers API?
The Stock Tickers API gives developers, traders, and businesses comprehensive financial data. Here's what sets it apart:
- 511,000+ ticker database: real-time and historical data for over 511,000 tickers across global exchanges like NYSE and Nasdaq.
- Financial statements: income statements, balance sheets, and cash flow statements for fundamental analysis.
- Fast data delivery: live prices and volumes updated every 2-3 minutes, with precise timestamps.
- Flexible historical data: up to 366 days of candlestick data (OHLCV) per request for technical analysis and backtesting.
- Simple integration: developer-friendly docs with Python code samples for every endpoint.
- Affordable plans: start with the $5 Test plan and scale to Standard or Premium as you grow.
Pricing
Every plan includes access to all 511,000+ tickers. Pick a tier based on your monthly request volume and historical data needs.
Market Data API
Test Plan
$5.00/month
Historical data, days: 60
Requests limit: 200
Requests Speed limit(per minute): 20
Standard Subscription
$25.00/month
Historical data, years: 5
Requests limit: 10000
Requests Speed limit(per minute): 60
Premium Subscription
$50.00/month
Historical data, years: 20+
Requests limit: 100000
Requests Speed limit(per minute): 120
Use Cases for the Stock Tickers API
- Trading platforms: build real-time trading apps with live prices and historical data.
- Portfolio trackers: help users monitor investments with accurate market data.
- Charting tools: build interactive stock charts with candlestick data for technical analysis.
- Financial dashboards: power business intelligence tools with ticker data.
- Fundamental analysis: financial statements for investment research and valuation.
Key Endpoints
The Stock Tickers API is one part of the broader Financial Data API. See also Stock Index API for market-level benchmarks.
| Endpoint | Description | Use Case |
|---|---|---|
/tickers-catalog |
Lists tickers, filtered by symbol or exchange, up to 300 per page. | Discover and browse available tickers. |
/ticker-spot |
Real-time price, volume, and daily change for a ticker. | Live trading and dashboards. |
/ticker-candles |
Historical OHLCV candlesticks, dividends, and splits, up to 366 days. | Charting and backtesting. |
/ticker-income-statement, /ticker-balance-sheet, /ticker-cash-flow |
Quarterly, annual, or trailing financial statements. | Fundamental analysis and valuation. |
Browse Tickers with Tickers Catalog
Explore over 511,000 tickers, filtered by symbol (e.g. GOOGL) or exchange (e.g. NYSE). Each page returns up to 300 tickers with rich metadata.
Request Example
GET https://financeflowapi.com/api/v1/tickers-catalog?api_key=YOUR_API_KEY&ticker=GOOGL
Response Example
{
"success": true,
"code": 200,
"message": "OK",
"meta": {
"page": 1,
"total_pages": 1,
"total_items": 1,
"tickers_per_page": 300,
"timestamp": 1745423861,
"request_id": "68090df504b96"
},
"data": [
{
"ticker": "GOOGL",
"company_name": "Alphabet Inc.",
"exchange": "NASDAQ",
"full_exchange_name": "NASDAQ",
"currency": "USD",
"market": "us_market",
"first_trade_date": "2004-08-19 09:30:00",
"timezone": "America/New_York"
}
]
}
Python Example
import requests
API_KEY = 'your_api_key_here'
url = f'https://financeflowapi.com/api/v1/tickers-catalog?api_key={API_KEY}&ticker=GOOGL'
response = requests.get(url)
data = response.json()
print(data)
Real-Time Ticker Data with Ticker Spot
Fetch real-time stock data (updated every 2-3 minutes), including price, volume, and daily change, for tickers like AAPL.
Request Example
GET https://financeflowapi.com/api/v1/ticker-spot?api_key=YOUR_API_KEY&ticker=AAPL
Response Example
{
"success": true,
"code": 200,
"message": "OK",
"meta": {
"timestamp": 1745427151,
"request_id": "68091acfb967b"
},
"data": {
"ticker": "AAPL",
"price": "203.890000",
"change": "4.149994",
"changePercent": "2.077698",
"dayHigh": "208.000000",
"dayLow": "202.799000",
"volume": 29540691,
"prevClose": "199.740000",
"marketState": "REGULAR",
"lastUpdated": "2025-04-23T16:51:33"
}
}
Python Example
import requests
API_KEY = 'your_api_key_here'
url = f'https://financeflowapi.com/api/v1/ticker-spot?api_key={API_KEY}&ticker=AAPL'
response = requests.get(url)
data = response.json()
print(data)
Historical Candlestick Data with Ticker Candles
Access historical candlestick data (open, high, low, close, adjusted close, volume) for any ticker, up to 366 days per request, with deeper history on higher plans. The endpoint also returns dividends and stock splits.
Request Example (Latest 366 Days)
GET https://financeflowapi.com/api/v1/ticker-candles?api_key=YOUR_API_KEY&ticker=AAPL
Response Example
{
"success": true,
"code": 200,
"message": "OK",
"meta": {
"timestamp": 1750770562,
"request_id": "685aa38278651"
},
"data": [
{
"ticker": "AAPL",
"open": "201.630005",
"low": "198.960007",
"close": "201.500000",
"adj_close": "201.500000",
"volume": 55595500,
"dividend": 0.26,
"date": "2025-06-23"
},
{
"ticker": "AAPL",
"open": "198.240005",
"low": "196.860001",
"close": "201.000000",
"adj_close": "201.000000",
"volume": 96813500,
"split": "1:5",
"date": "2025-06-20"
}
]
}
Python Example
import requests
API_KEY = 'your_api_key_here'
url = f'https://financeflowapi.com/api/v1/ticker-candles?api_key={API_KEY}&ticker=AAPL&date_from=2025-01-01&date_to=2025-06-23'
response = requests.get(url)
data = response.json()
print(data)
Note: date ranges cannot exceed 366 days per request. Upgrade your plan for deeper historical data access.
Financial Statements
Access income statements, balance sheets, and cash flow statements for fundamental analysis and modeling:
Income Statement Endpoint
GET https://financeflowapi.com/api/v1/ticker-income-statement?api_key=YOUR_API_KEY&ticker=AAPL&type=quarterly_report
Balance Sheet Endpoint
GET https://financeflowapi.com/api/v1/ticker-balance-sheet?api_key=YOUR_API_KEY&ticker=AAPL&type=annual_report
Cash Flow Statement Endpoint
GET https://financeflowapi.com/api/v1/ticker-cash-flow?api_key=YOUR_API_KEY&ticker=AAPL&type=trailing_report
Response Example (Income Statement)
{
"success": true,
"code": 200,
"message": "OK",
"meta": {
"ticker": "AAPL",
"statement_type": "IncomeStatement",
"period_type": "quarterly_report",
"timestamp": 1755623093,
"request_id": "68a4aeb53a59b"
},
"data": [
{
"date": "2025-06-30",
"BASICEPS": "1.57",
"DILUTEDEPS": "1.57",
"EBIT": "28202000000",
"EBITDA": "31032000000",
"GROSS_PROFIT": "43718000000",
"NET_INCOME": "23434000000",
"OPERATING_INCOME": "28202000000",
"TOTAL_REVENUE": "94036000000"
}
]
}
Supported Financial Metrics
Available data points for fundamental and technical analysis:
| Category | Available Data Points |
|---|---|
| Income Statement | Revenue, Gross Profit, EBITDA, Operating Income, Net Income, EPS (Basic/Diluted), Interest Expense |
| Balance Sheet | Total Assets, Total Liabilities, Common Stock Equity, Working Capital, Total Debt, Inventory, Receivables |
| Cash Flow | Operating Cash Flow, Capital Expenditures, Investing Activities, Financing Activities, Free Cash Flow |
| Market Data | Real-time Price, Market Cap, Volume, Day High/Low, Previous Close, Dividend Yield, Stock Splits |
Frequently Asked Questions
What is the FinanceFlowAPI Stock Tickers API?
It provides real-time and historical data for over 511,000 tickers, including prices, volumes, candlestick data, and financial statements, ideal for trading and analytics apps.
How fast is the real-time data?
Prices and volumes update every 2-3 minutes, with precise timestamps on every response.
Can I access historical data?
Yes, retrieve up to 366 days of candlestick data (open, high, low, close, volume, dividends, splits) per request, with deeper history available on higher plans.
What financial statements are available?
Income statements, balance sheets, and cash flow statements for fundamental analysis, available as quarterly, annual, or trailing reports.
Is there a Test plan?
Yes, the Test plan is $5/month for 200 requests, with full access to all 511,000+ tickers.
What support is available?
Email support on every plan, and priority support for Premium users.
Get Started with the Stock Tickers API
Join thousands of developers building financial applications with FinanceFlowAPI. Start with the $5 Test plan and explore the comprehensive documentation, or reach us at [email protected].
Start Now