Stock Market Intelligence API
# Stock Market Intelligence API A comprehensive financial data API providing real-time and historical stock market data for trading applications, financial dashboards, portfolio trackers, and AI-powered financial assistants. ## Key Features ### Real-Time Stock Quotes Get instant price data for any stock symbol including: - Current price, open, high, low, close - Volume and market cap - 52-week…
Stock Market Intelligence API endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET |
get_market_status_market_status_get /market-status |
Get current market status (open/closed). **Example:** ``` GET /market-status ``` |
| GET |
root__get / |
Get API information and available endpoints. |
| GET |
health_check_health_get /health |
Health check endpoint. |
| GET |
get_news_news__symbol__get /news/{symbol} |
Get latest news for a stock. **Parameters:** - **symbol**: Stock ticker symbol - **limit**: Maximum number of articles (1-50) **Example:** ``` GET /news/AAPL?limit=5 ``` |
| GET |
get_quote_quote__symbol__get /quote/{symbol} |
Get real-time stock quote. **Parameters:** - **symbol**: Stock ticker symbol (e.g., AAPL, MSFT, GOOGL) **Returns:** Real-time price, change, volume, market cap, and key metrics.… |
| GET |
get_multiple_quotes_quotes_get /quotes |
Get quotes for multiple stocks at once. **Parameters:** - **symbols**: Comma-separated list of ticker symbols (max 10) **Example:** ``` GET /quotes?symbols=AAPL,MSFT,GOOGL ``` |
| GET |
get_trending_trending_get /trending |
Get trending/most active stocks. Returns a curated list of popular stocks with their current quotes. **Example:** ``` GET /trending ``` |
| GET |
search_search_get /search |
Search for stocks by name or symbol. **Parameters:** - **q**: Search query (company name or symbol) - **limit**: Maximum number of results (1-25) **Example:** ``` GET… |
| GET |
get_history_history__symbol__get /history/{symbol} |
Get historical price data for a stock. **Parameters:** - **symbol**: Stock ticker symbol - **period**: Time period (1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max) -… |
| GET |
get_crypto_crypto__symbol__get /crypto/{symbol} |
Get cryptocurrency price quote. **Parameters:** - **symbol**: Crypto symbol (e.g., BTC, ETH, DOGE) **Note:** Appends '-USD' automatically if not present. **Example:** ``` GET… |