Stock Tickers API: Real-Time Data for 511,000+ Tickers
Power Your Apps with Real-Time & Historical Stock Data
Access over 511,000+ stock tickers like AAPL, TSLA, and GOOGL with FinanceFlowAPI's lightning-fast Stock Tickers API. Start today!
Get Your API KeyWhy FinanceFlowAPI Stands Out
FinanceFlowAPI's Stock Tickers API empowers developers, traders, and businesses with unmatched financial data solutions. Here's why we're the top choice:
- Largest Ticker Database: Access real-time and historical data for over 511,000 tickers across global exchanges like NYSE and Nasdaq.
- Comprehensive Financial Statements: Income statements, balance sheets, and cash flow statements for fundamental analysis
- Fast Data Delivery: Get live stock prices and volumes updated every 2–3 minutes, with precise timestamps.
- Flexible Historical Data: Retrieve up to 366 days of candlestick data (OHLCV) for technical analysis and backtesting.
- Seamless Integration: Integrate in minutes with our developer-friendly documentation and code samples in Python, JavaScript, and PHP.
- Affordable Plans: Start with a Test plan (200 requests/month) or upgrade to Standard ($25/month) or Premium ($50/month) for more power.
Pricing Plans
Use Cases for FinanceFlowAPI
Our Stock Tickers API is perfect for a wide range of applications:
- Trading Platforms: Build real-time trading apps with live prices and historical data.
- Portfolio Trackers: Help users monitor their investments with accurate market data.
- Charting Tools: Create interactive stock charts with candlestick data for technical analysis.
- Financial Dashboards: Power business intelligence tools with comprehensive ticker data.
- Fundamental Analysis: Financial statements for investment research and valuation
Browse Tickers with Tickers Catalogue
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"
}
]
}
Financial Statements API NEW
Access comprehensive financial statements for fundamental analysis and financial 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
Python Example (Financial Statements):
import requests
API_KEY = 'your_api_key_here'
url = f'https://financeflowapi.com/api/v1/ticker-income-statement?api_key={API_KEY}&ticker=AAPL&type=quarterly_report'
response = requests.get(url)
data = response.json()
print(data)
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",
"BASIC_AVERAGE_SHARES": "14902886000",
"BASICEPS": "1.57",
"COST_OFREVENUE": "50318000000",
"DILUTED_AVERAGE_SHARES": "14948179000",
"DILUTEDEPS": "1.57",
"DILUTEDNI_AVAILTO_COM_STOCKHOLDERS": "23434000000",
"EBIT": "28202000000",
"EBITDA": "31032000000",
"GROSS_PROFIT": "43718000000",
"NET_INCOME": "23434000000",
"NET_INCOME_COMMON_STOCKHOLDERS": "23434000000",
"NET_INCOME_CONTINUOUS_OPERATIONS": "23434000000",
"NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION": "23434000000",
"NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST": "23434000000",
"NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS": "23434000000",
"NORMALIZEDEBITDA": "31032000000",
"NORMALIZED_INCOME": "23434000000",
"OPERATING_EXPENSE": "15516000000",
"OPERATING_INCOME": "28202000000",
"OPERATING_REVENUE": "94036000000",
"OTHER_INCOME_EXPENSE": "-171000000",
"OTHER_NON_OPERATING_INCOME_EXPENSES": "-171000000",
"PRETAX_INCOME": "28031000000",
"RECONCILED_COST_OFREVENUE": "50318000000",
"RECONCILED_DEPRECIATION": "2830000000",
"RESEARCH_AND_DEVELOPMENT": "8866000000",
"SELLING_GENERAL_AND_ADMINISTRATION": "6650000000",
"TAX_EFFECT_OFUNUSUAL_ITEMS": "0",
"TAX_PROVISION": "4597000000",
"TAX_RATE_FOR_CALCS": "0.163997",
"TOTAL_EXPENSES": "65834000000",
"TOTAL_OPERATING_INCOME_ASREPORTED": "28202000000",
"TOTAL_REVENUE": "94036000000"
}
]
}
Real-Time Ticker Data with Ticker Spot API
Fetch real-time(Updates approximately every 2-3 minutes) stock data, including price, volume, and daily changes, 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 API
Access historical candlestick data (open, high, low, close, adjusted close, volume) for any ticker. Retrieve up to 366 days of daily data, with deeper history available on premium plans.
The API also provides information about 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. Upgrade your plan for extended historical data access at FinanceFlowAPI.
Popular Stock Tickers
Some of the most traded tickers on FinanceFlowAPI:
- AAPL (Apple Inc.) — Technology innovator.
- TSLA (Tesla Inc.) — Electric vehicle pioneer.
- GOOGL (Alphabet Inc.) — Leader in search and AI.
Supported Financial Metrics
Comprehensive list of 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?
FinanceFlowAPI keeps you updated with fresh data every 2-3 minutes, providing the reliability you need to navigate changing market conditions.
Can I access historical data?
Yes, retrieve up to 366 days of candlestick data on the Test plan, with deeper history available on Standard and Premium plans.
What financial statements are available?
We provide comprehensive income statements, balance sheets, and cash flow statements for fundamental analysis.
What support is available?
We offer email support for all plans and priority support for Premium users. Check our documentation for quick answers.
Get Started with FinanceFlowAPI
Join thousands of developers building powerful financial applications with FinanceFlowAPI. Choose our $5 starter test plan to evaluate the API with full access to comprehensive documentation.
Start Now