Available Securities
Search
Search US tradeable tickers from Redis cache.
Uses in-memory filtering for single-character queries (fast, no RediSearch limitations).
Uses RediSearch for multi-character queries (optimized for large datasets).
/available-securities/search
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/search?query=AA&limit=10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"name": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"security_type": "string",
"cik": "string",
"sector": "string",
"industry": "string",
"volume_rank": 0,
"volume_rank_3_month": 0,
"volume_rank_24_hour": 0,
"average_daily_volume_3_month": 0,
"average_daily_volume_24_hour": 0
}
]
Stock List
Find symbols for traded and non-traded stocks with our Symbol List. This comprehensive list includes over 80,000 stocks.
Uses Redis cache for fast retrieval.
/available-securities/stock-list
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/stock-list" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"name": "string",
"sector": "string",
"industry": "string",
"volume_rank_3_month": 0,
"average_daily_volume_3_month": 0
}
]
Stock List Top By Volume Rank
US stocks with `volume_rank_3_month in [1, limit]` (rank within STOCK universe), sorted ascending.
Default `limit matches the configured stock depth (TOP_X_VOLUME_STOCKS`).
/available-securities/stock-list/top-by-volume-rank
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/stock-list/top-by-volume-rank?limit=3000" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"name": "string",
"sector": "string",
"industry": "string",
"volume_rank_3_month": 0,
"average_daily_volume_3_month": 0
}
]
Etf List
US ETFs in the active universe: ticker, name, exchanges, Yahoo liquidity rank / 3-month ADV.
Uses Redis cache for fast retrieval (no live quote price on this list).
/available-securities/etf-list
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/etf-list" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"name": "string",
"volume_rank_3_month": 0,
"average_daily_volume_3_month": 0
}
]
Crypto List
Get a list of all cryptocurrencies that are traded on exchanges around the world.
Uses Redis cache for fast retrieval.
/available-securities/crypto-list
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/crypto-list" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"name": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"volume_rank_24_hour": 0,
"average_daily_volume_24_hour": 0
}
]
Forex List
Get a list of all currency pairs that are traded on the forex market.
Uses Redis cache for fast retrieval.
/available-securities/forex-list
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/forex-list" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"name": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"volume_rank": 0,
"average_daily_volume_3_month": 0
}
]
Commodities List
Get a list of all commodities that are traded on exchanges around the world.
Uses Redis cache for fast retrieval.
/available-securities/commodities-list
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/commodities-list" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"name": "string",
"exchange_name": "string",
"exchange_short_name": "string",
"volume_rank": 0,
"average_daily_volume_3_month": 0
}
]
Financial Statement Symbols
Discover all companies with financial statements available on our API.
/available-securities/financial-statement-symbol-lists
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/financial-statement-symbol-lists" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"symbols": [
"string"
]
}
Available Traded List
Discover all actively traded stocks. Includes ticker/symbol, name, price, and exchange information.
/available-securities/available-traded-list
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/available-traded-list" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"name": "string",
"exchange": "string",
"exchangeShortName": "string",
"price": 0
}
]
Symbol Changes
Stay up-to-date on the latest symbol changes due to mergers, acquisitions, stock splits, and name changes.
/available-securities/symbol-changes
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/symbol-changes" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"name": "string",
"oldSymbol": "string",
"newSymbol": "string"
}
]
Exchange Symbols
Get all tickers/symbols listed on the given exchange.
/available-securities/exchange-symbols/{exchange}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/exchange-symbols/{exchange}" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"name": "string",
"price": 0,
"changesPercentage": 0,
"change": 0,
"dayLow": 0,
"dayHigh": 0,
"yearHigh": 0,
"yearLow": 0,
"marketCap": 0,
"priceAvg50": 0,
"priceAvg200": 0,
"exchange": "string",
"volume": 0,
"avgVolume": 0,
"open": 0,
"previousClose": 0,
"eps": 0,
"pe": 0,
"earningsAnnouncement": "string",
"sharesOutstanding": 0,
"timestamp": 0
}
]
Available Indexes
Provides a list of all available indexes, including ticker, name, and exchange.
Uses Redis cache for fast retrieval.
/available-securities/available-indexes
Interactive Example
curl -X GET "https://api.quantbotly.com/available-securities/available-indexes" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"name": "string",
"exchange_name": "string",
"exchange_short_name": "string"
}
]
Company Information
Company profile
Company overview for a symbol: identity, sector/industry, listing details, and related profile fields.
/company-information/company-profile/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/company-information/company-profile/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"price": 0,
"market_cap": 0,
"beta": 0,
"last_dividend": 0,
"range": "string",
"change": 0,
"change_percentage": 0,
"volume": 0,
"average_volume": 0,
"company_name": "string",
"currency": "string",
"cik": "string",
"isin": "string",
"cusip": "string",
"exchange_full_name": "string",
"exchange_name": "string",
"industry": "string",
"website": "string",
"description_TODO": "string",
"ceo": "string",
"sector": "string",
"country": "string",
"total_full_time_employees": "string",
"phone": "string",
"address": "string",
"city": "string",
"state": "string",
"zip": "string",
"image": "string",
"ipo_date": "string",
"default_image": true,
"is_etf": true,
"is_actively_trading": true,
"is_adr": true,
"is_fund": true
}
]
Employee count
Latest reported employee count for a company from regulatory filings.
/company-information/employee-count
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/company-information/employee-count?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"ticker": "string",
"cik": "string",
"acceptance_time": "string",
"period_of_report": "string",
"company_name": "string",
"filing_form_type": "string",
"filing_date": "string",
"number_of_employees": 0,
"source": "string"
}
Stock Screener
Find stocks that meet your investment criteria based on market cap, price, volume, sector, and country.
/company-information/stock-screener
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/company-information/stock-screener?marketCapMoreThan=10000&marketCapLowerThan=5000000000&priceMoreThan=1&priceLowerThan=5000&volumeMoreThan=1000&volumeLowerThan=5000000000000000&limit=10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"company_name": "string",
"market_cap": {},
"sector": "string",
"industry": "string",
"beta": {},
"price": 0,
"last_annual_dividend": {},
"volume": 0,
"exchange_name": "string",
"exchange_short_name": "string",
"country": "string",
"is_etf": true,
"is_fund": true,
"is_actively_trading": true
}
]
Stock grades
Recent analyst grade actions for a symbol (newest first). Use this for how professional investors have rated the company over time.
/company-information/stock-grade/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/company-information/stock-grade/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Quote
Quote Short Batch
Batch short quotes for supported symbols only.
Unsupported symbols are listed in `unsupported`; supported symbols without
available quote data are listed in `unavailable`.
/quotes/quote-short-batch
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/quotes/quote-short-batch?symbols=AAPL%2CMSFT%2CZZZZ" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"results": [
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
],
"unsupported": [
"string"
],
"unavailable": [
"string"
]
}
Quote Full Batch
Batch full quotes (best-effort merge of live quote + stored fundamentals/candles).
No edge cache — symbol sets rarely repeat as identical URIs.
/quotes/quote-full-batch
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/quotes/quote-full-batch?symbols=AAPL%2CMSFT%2CZZZZ" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"results": [
{
"ticker": "string",
"name": "string",
"exchange": "string",
"price": 0,
"change_value": 0,
"change_percent": 0,
"volume": 0,
"updated_at": "string",
"previous_close": 0,
"open": 0,
"day_high": 0,
"day_low": 0,
"year_high": 0,
"year_low": 0,
"price_avg_50": 0,
"price_avg_200": 0,
"market_cap": 0,
"average_volume": 0,
"eps": 0,
"pe": 0,
"shares_outstanding": 0,
"earnings_announcement": "string"
}
],
"unsupported": [
"string"
],
"unavailable": [
"string"
]
}
Stock Price Change Batch
Batch stock price-change windows for supported symbols.
No edge cache — symbol sets rarely repeat as identical URIs.
/quotes/stock-price-change-batch
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/quotes/stock-price-change-batch?symbols=AAPL%2CBTCUSD%2CZZZZ" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"results": [
{
"ticker": "string",
"1D": 0,
"5D": 0,
"1M": 0,
"3M": 0,
"6M": 0,
"ytd": 0,
"1Y": 0,
"3Y": 0,
"5Y": 0,
"10Y": 0
}
],
"unsupported": [
"string"
],
"unavailable": [
"string"
]
}
Full Quote
Full quote for a supported symbol (live quote + catalog/profile/fundamentals/candles).
Fields without enough stored data are null. Does not call upstream market-data APIs.
/quotes/quote-full/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/quotes/quote-full/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"ticker": "string",
"name": "string",
"exchange": "string",
"price": 0,
"change_value": 0,
"change_percent": 0,
"volume": 0,
"updated_at": "string",
"previous_close": 0,
"open": 0,
"day_high": 0,
"day_low": 0,
"year_high": 0,
"year_low": 0,
"price_avg_50": 0,
"price_avg_200": 0,
"market_cap": 0,
"average_volume": 0,
"eps": 0,
"pe": 0,
"shares_outstanding": 0,
"earnings_announcement": "string"
}
Simple Quote
Latest short quote for a supported symbol (price, volume, change, updated_at).
/quotes/quote-short/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/quotes/quote-short/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
Stock Price Change
Percentage price change across standard horizons (1D, 5D, 1M, 3M, 6M, YTD, 1Y, 3Y, 5Y, 10Y).
Windows without enough history are returned as null.
/quotes/stock-price-change/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/quotes/stock-price-change/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"ticker": "string",
"1D": 0,
"5D": 0,
"1M": 0,
"3M": 0,
"6M": 0,
"ytd": 0,
"1Y": 0,
"3Y": 0,
"5Y": 0,
"10Y": 0
}
Financial Statements
Income statement
Annual or quarterly income statement rows for a supported symbol, newest first.
/financial-statements/income-statement/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/financial-statements/income-statement/AAPL?limit=8" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"ticker": "string",
"reported_currency": "string",
"cik": "string",
"filing_date": "string",
"accepted_date": "string",
"calendar_year": "string",
"period": "string",
"revenue": 0,
"cost_of_revenue": 0,
"gross_profit": 0,
"gross_profit_ratio": 0,
"research_and_development_expenses": 0,
"general_and_administrative_expenses": 0,
"selling_and_marketing_expenses": 0,
"operating_expenses": 0,
"interest_income": 0,
"interest_expense": 0,
"depreciation_and_amortization": 0,
"ebitda": 0,
"operating_income": 0,
"income_before_tax": 0,
"income_tax_expense": 0,
"net_income": 0,
"eps": 0,
"eps_diluted": 0,
"link": "string",
"final_link": "string"
}
]
Balance sheet statement
Annual or quarterly balance sheet rows for a supported symbol, newest first.
/financial-statements/balance-sheet-statement/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/financial-statements/balance-sheet-statement/AAPL?limit=8" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"ticker": "string",
"reported_currency": "string",
"cik": "string",
"filing_date": "string",
"accepted_date": "string",
"calendar_year": "string",
"period": "string",
"total_assets": 0,
"total_liabilities": 0,
"total_equity": 0,
"cash_and_cash_equivalents": 0,
"total_debt": 0,
"net_debt": 0,
"link": "string",
"final_link": "string"
}
]
Cash flow statement
Annual or quarterly cash flow statement rows for a supported symbol, newest first.
/financial-statements/cash-flow-statement/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/financial-statements/cash-flow-statement/AAPL?limit=8" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"ticker": "string",
"reported_currency": "string",
"cik": "string",
"filing_date": "string",
"accepted_date": "string",
"calendar_year": "string",
"period": "string",
"net_income": 0,
"depreciation_and_amortization": 0,
"operating_cash_flow": 0,
"capital_expenditure": 0,
"free_cash_flow": 0,
"link": "string",
"final_link": "string"
}
]
Financial Reports Dates
Get the list of dates for which financial reports are available.
/financial-statements/financial-reports-dates
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/financial-statements/financial-reports-dates?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"date": "string",
"period": "string",
"linkXlsx": "string",
"linkJson": "string"
}
]
Statement Analysis
Key metrics
Annual or quarterly key financial metrics for a supported symbol, newest first.
/statement-analysis/key-metrics/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/statement-analysis/key-metrics/AAPL?limit=8" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{}
]
Key metrics (TTM)
Trailing-twelve-month key financial metrics for a supported symbol.
/statement-analysis/key-metrics-ttm/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/statement-analysis/key-metrics-ttm/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{}
]
Financial ratios
Annual or quarterly financial ratios for a supported symbol, newest first.
/statement-analysis/ratios/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/statement-analysis/ratios/AAPL?limit=8" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{}
]
Financial ratios (TTM)
Trailing-twelve-month financial ratios for a supported symbol.
/statement-analysis/ratios-ttm/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/statement-analysis/ratios-ttm/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{}
]
Price Targets
Price target news
Recent analyst price-target news for a symbol (newest first). Use limit to control how many rows are returned.
/price-targets/price-target/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/price-targets/price-target/AAPL?limit=10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"published_date": "string",
"news_article_url": "string",
"news_article_title": "string",
"analyst_name": "string",
"analyst_price_target": 0,
"adjusted_price_target": 0,
"price_when_posted": 0,
"news_source_publisher": "string",
"news_source_base_url": "string",
"analyst_company": "string"
}
]
Price target summary
Aggregate analyst price-target stats for a symbol (last month / quarter / year / all-time counts and averages).
/price-targets/price-target-summary/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/price-targets/price-target-summary/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"last_month_count": 0,
"last_month_avg_price_target": 0,
"last_quarter_count": 0,
"last_quarter_avg_price_target": 0,
"last_year_count": 0,
"last_year_avg_price_target": 0,
"all_time_count": 0,
"all_time_avg_price_target": 0,
"publishers": "string"
}
]
Price target consensus
High, low, consensus, and median analyst price targets for a symbol.
/price-targets/price-target-consensus/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/price-targets/price-target-consensus/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"price_target_high": 0,
"price_target_low": 0,
"price_target_consensus": 0,
"price_target_median": 0
}
]
Price target RSS feed
Latest cross-market analyst price-target news (newest first). Use limit to control how many rows are returned. Market-wide feed — no symbol path (not ticker-scoped).
/price-targets/price-target-rss-feed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/price-targets/price-target-rss-feed?limit=10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"published_date": "string",
"news_article_url": "string",
"news_article_title": "string",
"analyst_name": "string",
"analyst_price_target": 0,
"adjusted_price_target": 0,
"price_when_posted": 0,
"news_source_publisher": "string",
"news_source_base_url": "string",
"analyst_company": "string"
}
]
Upgrades & Downgrades
Upgrades and downgrades
Recent analyst upgrade/downgrade news for a symbol (newest first). Use limit to control how many rows are returned.
/upgrades-downgrades/upgrades-downgrades/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades/AAPL?limit=10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"published_date": "string",
"news_article_url": "string",
"news_article_title": "string",
"news_source_base_url": "string",
"news_source_publisher": "string",
"stock_grade": "string",
"prior_stock_grade": "string",
"rating_company": "string",
"action": "string",
"price_when_posted": 0
}
]
Upgrades and downgrades consensus
Analyst rating consensus counts (strong buy through strong sell) for a symbol.
/upgrades-downgrades/upgrades-downgrades-consensus/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades-consensus/AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"strong_buy": 0,
"buy": 0,
"hold": 0,
"sell": 0,
"strong_sell": 0,
"consensus": "string"
}
]
Upgrades and downgrades RSS feed
Latest cross-market analyst upgrade/downgrade news (newest first). Use limit to control how many rows are returned. Market-wide feed — no symbol path (not ticker-scoped).
/upgrades-downgrades/upgrades-downgrades-rss-feed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades-rss-feed?limit=10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": "string",
"published_date": "string",
"news_article_url": "string",
"news_article_title": "string",
"news_source_base_url": "string",
"news_source_publisher": "string",
"stock_grade": "string",
"prior_stock_grade": "string",
"rating_company": "string",
"action": "string",
"price_when_posted": 0
}
]
News
News Articles
Get a list of the latest articles from QuantBotly with pagination.
Args:
page (int): The page number. Default is 0.
size (int): The number of articles to retrieve. Default is 5.
Returns:
ArticlesResponse: Paginated list of articles.
/news/articles
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/articles?page=0&size=5" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"content": [
{
"title": "string",
"date": "string",
"content": "string",
"tickers": "string",
"image": "string",
"link": "string",
"author": "string",
"site": "string"
}
],
"pageable": {
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
},
"pageSize": 0,
"pageNumber": 0,
"offset": 0,
"paged": true,
"unpaged": true
},
"totalPages": 0,
"totalElements": 0,
"last": true,
"size": 0,
"number": 0,
"first": true,
"numberOfElements": 0,
"empty": true
}
Latest general news
Latest general market and business news from major publishers.
Pass limit to control how many articles you get back (newest first).
Request only as many items as you need for your view.
/news/general-news
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/general-news?limit=20" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"ticker": {},
"published_date": "string",
"news_source_publisher": "string",
"title": "string",
"site": "string",
"text": "string",
"url": "string"
}
]
Latest stock news
Latest news for one or more stock/ETF symbols.
How to use
- Pass
tickersas a comma-separated list. - Pass
limitfor how many articles you want back (newest first). - News for every listed symbol is merged into one list, sorted by publish time (newest first), then truncated to
limit. Solimitis a total across all tickers, not a per-symbol count.
Limits
- Up to 50 symbols per request (HTTP 400 if exceeded).
limitmust be between 1 and 250.
Examples
/news/stock-news?tickers=AAPL&limit=20/news/stock-news?tickers=AAPL,MSFT&limit=50→ up to 50 articles total from both symbols
/news/stock-news
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/stock-news?tickers=AAPL&limit=20" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"publishedDate": "string",
"title": "string",
"site": "string",
"text": "string",
"url": "string"
}
]
Stock News Sentiments
Get an RSS feed of the latest stock news articles with their sentiment analysis.
Args:
page (int): The page number. Default is 0.
Returns:
List[StockNewsSentimentResponse]: A list of stock news articles with sentiment analysis.
/news/stock-news-sentiments
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/stock-news-sentiments?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"publishedDate": "string",
"title": "string",
"image": "string",
"site": "string",
"text": "string",
"url": "string",
"sentiment": "string",
"sentimentScore": 0
}
]
Forex News
Get a list of the latest forex news articles from various sources.
Args:
page (int): The page number. Default is 0.
Returns:
List[ForexNewsResponse]: A list of forex news articles.
/news/forex-news
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/forex-news?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"publishedDate": "string",
"title": "string",
"image": "string",
"site": "string",
"text": "string",
"symbol": "string",
"url": "string"
}
]
Crypto News
Get a list of the latest crypto news articles from various sources.
Args:
page (int): The page number. Default is 0.
symbol (str): The crypto symbol (e.g., BTCUSD).
Returns:
List[CryptoNewsResponse]: A list of crypto news articles.
/news/crypto-news
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/crypto-news?page=0&symbol=BTCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"publishedDate": "string",
"title": "string",
"image": "string",
"site": "string",
"text": "string",
"symbol": "string",
"url": "string"
}
]
Press Releases
Get a list of the latest press releases from various companies.
Args:
page (int): The page number. Default is 0.
Returns:
List[PressRelease]: A list of press releases.
/news/press-releases
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/press-releases?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"date": "string",
"title": "string",
"text": "string"
}
]
Press Releases By Symbol
Get a list of the latest press releases for a specific company.
Args:
symbol (str): The company symbol.
page (int): The page number. Default is 0.
Returns:
List[PressRelease]: A list of press releases for the company.
/news/press-releases/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/press-releases/{symbol}?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"date": "string",
"title": "string",
"text": "string"
}
]
Historical Social Sentiment
Provides historical social sentiment data for a given ticker or company name.
Args:
symbol (str): The company symbol. Default is "AAPL".
page (int): The page number. Default is 0.
Returns:
List[HistoricalSocialSentimentResponse]: A list of historical social sentiment data.
/news/historical-social-sentiment
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/historical-social-sentiment?symbol=AAPL&page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"symbol": "string",
"stocktwitsPosts": 0,
"twitterPosts": 0,
"stocktwitsComments": 0,
"twitterComments": 0,
"stocktwitsLikes": 0,
"twitterLikes": 0,
"stocktwitsImpressions": 0,
"twitterImpressions": 0,
"stocktwitsSentiment": 0,
"twitterSentiment": 0
}
]
Trending Social Sentiment
Provides trending social sentiment data for a given ticker or company name.
Args:
type (str): Sentiment type, either "bullish" or "bearish". Default is "bullish".
source (str): Source of the sentiment. Default is "stocktwits".
Returns:
List[TrendingSocialSentimentResponse]: A list of trending social sentiment data.
/news/trending-social-sentiment
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/trending-social-sentiment?type=bullish&source=stocktwits" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"name": "string",
"rank": 0,
"sentiment": 0,
"lastSentiment": 0
}
]
Social Sentiment Changes
Provides changes in social sentiment data for a given ticker or company name over a period of time.
Args:
type (str): Sentiment type, either "bullish" or "bearish". Default is "bullish".
source (str): Source of the sentiment. Default is "stocktwits".
Returns:
List[SocialSentimentChangeResponse]: A list of changes in social sentiment data.
/news/social-sentiment-changes
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/news/social-sentiment-changes?type=bullish&source=stocktwits" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"name": "string",
"rank": 0,
"sentiment": 0,
"sentimentChange": 0
}
]
Earnings Transcripts
Earning Call Transcript
Get the full transcript of an earnings call for a specific company in text format.
Args:
symbol (str): The stock symbol of the company.
year (int): The year of the earnings call. Default is 2020.
quarter (int): The quarter of the earnings call. Default is 3.
Returns:
List[EarningsCallTranscriptResponse]: A list containing the earnings call transcript.
/earnings-transcripts/earning-call-transcript/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings-transcripts/earning-call-transcript/{symbol}?year=2020&quarter=3" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"quarter": 0,
"year": 0,
"date": "string",
"content": "string"
}
]
Transcript Dates
Get a list of all upcoming earnings call dates for a specific company.
Args:
symbol (str): The stock symbol of the company.
Returns:
List of dicts from stable `earning-call-transcript-dates` (e.g. quarter, fiscalYear, date).
/earnings-transcripts/transcript-dates
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings-transcripts/transcript-dates" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{}
]
Batch Earning Call Transcripts
Get a batch of earnings call transcripts for a specific company in text format.
Args:
symbol (str): The stock symbol of the company.
year (int): The year of the earnings calls. Default is 2020.
Returns:
List[BatchEarningsCallTranscriptResponse]: A list of earnings call transcripts for the specified year.
/earnings-transcripts/batch-earning-call-transcript/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings-transcripts/batch-earning-call-transcript/{symbol}?year=2020" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"quarter": 0,
"year": 0,
"date": "string",
"content": "string"
}
]
Earnings
Earning Calendar
Get a list of upcoming & past earnings announcements for publicly traded companies.
Args:
from_date (str): The start date for the earnings data (format: YYYY-MM-DD). Default is '2023-08-10'.
to_date (str): The end date for the earnings data (format: YYYY-MM-DD). Default is '2023-10-10'.
Returns:
List[EarningsCalendarResponse]: A list of earnings announcements.
/earnings/earning-calendar
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings/earning-calendar?from_date=2023-08-10&to_date=2023-10-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"symbol": "string",
"eps": 0,
"epsEstimated": 0,
"time": "string",
"revenue": 0,
"revenueEstimated": 0,
"fiscalDateEnding": "string",
"updatedFromDate": "string"
}
]
Historical Earning Calendar
Get a list of historical & upcoming earnings announcements for a specific company.
Args:
symbol (str): The stock symbol of the company.
limit (int): The number of earnings data to return. Default is 100.
Returns:
List[EarningsHistoricalResponse]: A list of historical and upcoming earnings announcements.
/earnings/historical-earning-calendar/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings/historical-earning-calendar/{symbol}?limit=100" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"symbol": "string",
"eps": 0,
"epsEstimated": 0,
"time": "string",
"revenue": 0,
"revenueEstimated": 0,
"updatedFromDate": "string",
"fiscalDateEnding": "string"
}
]
Earning Calendar Confirmed
Get a list of confirmed earnings announcements for publicly traded companies.
Args:
from_date (str): The start date for the earnings data (format: YYYY-MM-DD). Default is '2023-04-10'.
to_date (str): The end date for the earnings data (format: YYYY-MM-DD). Default is '2023-08-19'.
limit (int): The number of earnings data to return. Default is 100.
Returns:
List[EarningsConfirmedResponse]: A list of confirmed earnings announcements.
/earnings/earning-calendar-confirmed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings/earning-calendar-confirmed?from_date=2023-04-10&to_date=2023-08-19&limit=100" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"exchange": "string",
"time": "string",
"when": "string",
"date": "string",
"publicationDate": "string",
"title": "string",
"url": "string"
}
]
Earnings Surprises
Get a list of earnings announcements that were either positive or negative surprises.
Args:
symbol (str): The stock symbol of the company. Default is 'AAPL'.
Returns:
List[EarningsSurprisesResponse]: A list of earnings surprises.
/earnings/earnings-surprises/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/earnings/earnings-surprises/{symbol}" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"symbol": "string",
"epsActual": 0,
"epsEstimated": 0,
"revenueActual": 0,
"revenueEstimated": 0,
"lastUpdated": "string"
}
]
Dividends
Stock Dividend Calendar
Get a list of upcoming dividend payments for publicly traded companies.
Args:
from_date (str): The start date for the dividends data (format: YYYY-MM-DD). Default is '2023-08-10'.
to_date (str): The end date for the dividends data (format: YYYY-MM-DD). Default is '2023-10-10'.
Returns:
List[DividendCalendarResponse]: A list of upcoming dividend payments.
/dividends/stock-dividend-calendar
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/dividends/stock-dividend-calendar?from_date=2023-08-10&to_date=2023-10-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"label": "string",
"adjDividend": 0,
"symbol": "string",
"dividend": 0,
"recordDate": "string",
"paymentDate": "string",
"declarationDate": "string"
}
]
Historical Dividend
Get a list of historical dividend payments for a specific company.
Args:
symbol (str): The stock symbol of the company. Default is 'AAPL'.
Returns:
DividendHistoricalResponse: A list of historical dividend payments.
/dividends/historical-dividend/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/dividends/historical-dividend/{symbol}" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"symbol": "string",
"historical": [
{
"date": "string",
"label": "string",
"adjDividend": 0,
"dividend": 0,
"recordDate": "string",
"paymentDate": "string",
"declarationDate": "string"
}
]
}
Stock Splits
Stock Split Calendar
Get a list of upcoming stock splits for publicly traded companies.
- from_date: Start date of the range (format: YYYY-MM-DD)
- to_date: End date of the range (format: YYYY-MM-DD)
Response:
- A list of stock split events with details like date, label, symbol, numerator, and denominator.
/splits/calendar
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/splits/calendar?from_date=2023-08-10&to_date=2023-10-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Historical Stock Splits
Get historical stock split data for a given company.
- symbol: Ticker symbol of the company (e.g., AAPL)
Response:
- Historical stock split events with date, label, numerator, and denominator.
/splits/historical/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/splits/historical/{symbol}" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
IPO Calendar
Ipo Confirmed
Get a list of confirmed IPOs scheduled to take place in the near future.
- from_date: Start date of the range (format: YYYY-MM-DD)
- to_date: End date of the range (format: YYYY-MM-DD)
Response includes information such as symbol, form, filing date, and a link to the IPO filing document when available.
/ipos/confirmed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/ipos/confirmed?from_date=2021-11-10&to_date=2022-02-01" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"cik": "string",
"form": "string",
"filingDate": "string",
"acceptedDate": "string",
"effectivenessDate": "string",
"url": "string"
}
]
Ipo Prospectus
Get a list of IPO prospectuses for upcoming companies.
- from_date: Start date of the range (format: YYYY-MM-DD)
- to_date: End date of the range (format: YYYY-MM-DD)
Response includes information about the IPO such as price per share, total proceeds, and a link to the prospectus when available.
/ipos/prospectus
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/ipos/prospectus?from_date=2021-11-10&to_date=2022-02-01" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"cik": "string",
"form": "string",
"filingDate": "string",
"acceptedDate": "string",
"ipoDate": "string",
"pricePublicPerShare": 0,
"pricePublicTotal": 0,
"discountsAndCommissionsPerShare": 0,
"discountsAndCommissionsTotal": 0,
"proceedsBeforeExpensesPerShare": 0,
"proceedsBeforeExpensesTotal": 0,
"url": "string"
}
]
Ipo By Symbol
Get a list of IPOs for a specific company scheduled to take place in the near future.
- from_date: Start date of the range (format: YYYY-MM-DD)
- to_date: End date of the range (format: YYYY-MM-DD)
Response includes information such as the company name, exchange, price range, and expected IPO date.
/ipos/calendar-by-symbol
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/ipos/calendar-by-symbol?from_date=2021-11-10&to_date=2022-02-01" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"company": "string",
"symbol": "string",
"exchange": "string",
"actions": "string",
"shares": 0,
"priceRange": "string",
"marketCap": 0
}
]
Mergers & Acquisitions
Ma Rss Feed
Get a real-time stream of Mergers & Acquisitions news and announcements.
- page: Page number to retrieve (default: 0)
Response includes information about the companies involved, transaction date, and a link to the filing document when available.
/mergers-acquisitions/rss-feed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/mergers-acquisitions/rss-feed?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"companyName": "string",
"cik": "string",
"symbol": "string",
"targetedCompanyName": "string",
"targetedCik": "string",
"targetedSymbol": "string",
"transactionDate": "string",
"acceptanceTime": "string",
"url": "string"
}
]
Search Ma
Search for Mergers & Acquisitions deals by company name.
- name: Name of the company to search for (default: syros)
Response includes information about the company, targeted company, transaction date, and a link to the filing document when available.
/mergers-acquisitions/search
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/mergers-acquisitions/search?name=syros" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"companyName": "string",
"cik": "string",
"symbol": "string",
"targetedCompanyName": "string",
"targetedCik": "string",
"targetedSymbol": "string",
"transactionDate": "string",
"acceptanceTime": "string",
"url": "string"
}
]
Historical Prices
Daily adjusted OHLCV candles
API documentation for this Quantbotly service.
/historical-prices/candle-chart-daily-adjusted
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/historical-prices/candle-chart-daily-adjusted?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Daily adjusted close and volume
API documentation for this Quantbotly service.
/historical-prices/line-chart-daily-adjusted
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/historical-prices/line-chart-daily-adjusted?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"close": 0,
"volume": 0,
"change": 0,
"change_percent": 0
}
]
Intraday OHLCV candles
API documentation for this Quantbotly service.
/historical-prices/candle-chart-intraday
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/historical-prices/candle-chart-intraday?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Intraday close and volume
API documentation for this Quantbotly service.
/historical-prices/line-chart-intraday
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/historical-prices/line-chart-intraday?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"close": 0,
"volume": 0,
"vwap": 0,
"change": 0,
"change_percent": 0
}
]
Technical Indicators
Technical Indicator
Get the technical indicators for a given company and timeframe.
- timeframe: Time interval for the chart (default: 5min, options: 1min, 5min, 15min, 30min, 1hour, 4hour, 1day)
- symbol: Ticker symbol of the company (e.g., AAPL, default: AAPL)
- type: Type of technical indicator (default: SMA, options: sma, ema, wma, dema, tema, williams, rsi, adx, standardDeviation)
- period: Number of periods over which the technical indicator is calculated (default: 10)
- from_date: Start date of the range (optional, format: YYYY-MM-DD, default: 2023-10-10)
- to_date: End date of the range (optional, format: YYYY-MM-DD, default: 2023-12-10)
Response includes the date, open, high, low, close, and the calculated indicator value.
/technical-indicators/
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/technical-indicators/?symbol=AAPL&period=10&from_date=2023-10-10&to_date=2023-12-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
ETF Holdings
Etf Holding Dates
Get the dates on which ETF holdings are updated.
- symbol: Ticker symbol of the ETF (default: SPY)
- cik: Optional CIK code for the ETF
Response includes the dates.
/etfs/holdings-dates
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/etfs/holdings-dates?symbol=SPY" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string"
}
]
Etf Holdings
Get the list of all institutional investors that own shares of an ETF.
- symbol: Ticker symbol of the ETF (default: SPY)
- date: Date of holdings (default: 2023-09-30)
- cik: Optional CIK code for the ETF
Response includes details of ETF holdings.
/etfs/holdings
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/etfs/holdings?symbol=SPY&date=2023-09-30" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"cik": "string",
"acceptanceTime": "string",
"date": "string",
"symbol": "string",
"name": "string",
"lei": "string",
"title": "string",
"cusip": "string",
"isin": "string",
"balance": 0,
"units": "string",
"cur_cd": "string",
"valUsd": 0,
"pctVal": 0,
"payoffProfile": "string",
"assetCat": "string",
"issuerCat": "string",
"invCountry": "string",
"isRestrictedSec": "string",
"fairValLevel": "string",
"isCashCollateral": "string",
"isNonCashCollateral": "string",
"isLoanByFund": "string"
}
]
Etf Holder
Get all stocks held by a specific ETF.
- symbol: Ticker symbol of the ETF (e.g., SPY)
Response includes assets, share number, weight, and other details.
/etfs/holder/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/etfs/holder/{symbol}" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"asset": "string",
"name": "string",
"isin": "string",
"cusip": "string",
"sharesNumber": 0,
"weightPercentage": 0,
"marketValue": 0,
"updated": "string"
}
]
Etf Info
Get basic information about an ETF.
- symbol: Ticker symbol of the ETF (default: SPY)
Response includes basic information like expense ratio, assets under management, etc.
/etfs/info
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/etfs/info?symbol=SPY" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"assetClass": "string",
"aum": 0,
"avgVolume": 0,
"description": "string",
"domicile": "string",
"etfCompany": "string",
"expenseRatio": 0,
"inceptionDate": "string",
"nav": 0,
"navCurrency": "string",
"website": "string",
"holdingsCount": 0
}
]
Politicians
Senate Trading
Get a list of all the trades made by US Senators for a specific symbol.
- symbol: The ticker symbol of the asset (default: AAPL)
Response includes the date of the trade, asset traded, amount traded, and more.
/politicians/trading
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/politicians/trading?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"firstName": "string",
"lastName": "string",
"office": "string",
"link": "string",
"dateRecieved": "string",
"transactionDate": "string",
"owner": "string",
"assetDescription": "string",
"assetType": "string",
"type": "string",
"amount": "string",
"comment": "string",
"symbol": "string"
}
]
Senate Trading Rss Feed
Get the RSS feed for the latest Senate trading activities.
- page: The page number of the RSS feed (default: 0)
Response includes real-time updates on Senate trading activities.
/politicians/trading-rss-feed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/politicians/trading-rss-feed?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"firstName": "string",
"lastName": "string",
"office": "string",
"link": "string",
"dateRecieved": "string",
"transactionDate": "string",
"owner": "string",
"assetDescription": "string",
"assetType": "string",
"type": "string",
"amount": "string",
"comment": "string",
"symbol": "string"
}
]
House Disclosure
Get a list of all the disclosures made by House Representatives for a specific symbol.
- symbol: The ticker symbol of the asset (default: AAPL)
Response includes the date of disclosure, asset traded, amount, and more.
/politicians/disclosure
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/politicians/disclosure?symbol=AAPL" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"disclosureYear": "string",
"disclosureDate": "string",
"transactionDate": "string",
"owner": "string",
"ticker": "string",
"assetDescription": "string",
"type": "string",
"amount": "string",
"representative": "string",
"district": "string",
"link": "string",
"capitalGainsOver200USD": true
}
]
House Disclosure Rss Feed
Get the RSS feed for the latest House Representatives' disclosures.
- page: The page number of the RSS feed (default: 0)
Response includes real-time updates on House Representatives' financial disclosures.
/politicians/disclosure-rss-feed
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/politicians/disclosure-rss-feed?page=0" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"disclosureYear": "string",
"disclosureDate": "string",
"transactionDate": "string",
"owner": "string",
"ticker": "string",
"assetDescription": "string",
"type": "string",
"amount": "string",
"representative": "string",
"district": "string",
"link": "string",
"capitalGainsOver200USD": true
}
]
Market Performance
Market Index
Get a list of all major stock market indices.
/market-performance/market-index
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/market-index" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Sector Performance
Get the performance of each sector of the stock market over a specified period of time.
/market-performance/sector-performance
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/sector-performance" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Sector Pe Ratio
Get the price-to-earnings (PE) ratio for each sector of the stock market.
/market-performance/sector-pe-ratio
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/sector-pe-ratio?date=2023-10-10&exchange=NYSE" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"sector": "string",
"exchange": "string",
"pe": 0
}
]
Biggest gainers
Stocks with the largest price increases for the current session, ranked by percent change (highest first).
/market-performance/market-biggest-gainers
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/market-biggest-gainers" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Biggest losers
Stocks with the largest price decreases for the current session, ranked by percent change (lowest first).
/market-performance/market-biggest-losers
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/market-biggest-losers" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Most active
Stocks with the highest trading volume for the current session, ranked by volume (highest first).
/market-performance/market-most-active
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/market-most-active" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Industry Pe Ratio
Get the price-to-earnings (PE) ratio for each industry of the stock market.
/market-performance/industry-pe-ratio
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/industry-pe-ratio?date=2023-10-10&exchange=NYSE" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"industry": "string",
"exchange": "string",
"pe": 0
}
]
Sector Historical Performance
Get historical data on the performance of each sector of the stock market.
Stable FMP exposes per-sector series; we merge them into the legacy v3-style rows.
/market-performance/sector-historical-performance
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/market-performance/sector-historical-performance?from_date=2024-01-01&to_date=2024-03-01&limit=50" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"basicMaterialsChangesPercentage": 0,
"communicationServicesChangesPercentage": 0,
"consumerCyclicalChangesPercentage": 0,
"consumerDefensiveChangesPercentage": 0,
"energyChangesPercentage": 0,
"financialServicesChangesPercentage": 0,
"healthcareChangesPercentage": 0,
"industrialsChangesPercentage": 0,
"realEstateChangesPercentage": 0,
"technologyChangesPercentage": 0,
"utilitiesChangesPercentage": 0
}
]
Economics Data
Treasury Rates
Get real-time and historical Treasury rates for all maturities.
- from_date: Start date for the Treasury rates (default: 2023-08-10)
- to_date: End date for the Treasury rates (default: 2023-10-10)
/economics/treasury-rates
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/economics/treasury-rates?from_date=2023-08-10&to_date=2023-10-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Economic Indicators
Get real-time and historical economic data for various economic indicators.
- name: The name of the economic indicator (default: GDP)
- from_date: Start date for the economic indicator data (default: 2019-10-10)
- to_date: End date for the economic indicator data (default: 2021-11-10)
Economic indicators dropdown includes values like GDP, CPI, unemployment rate, etc.
/economics/economic-indicators
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/economics/economic-indicators?from_date=2019-10-10&to_date=2021-11-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Economics Calendar
Get a calendar of upcoming economic data releases.
- from_date: Start date for the economic calendar (default: 2023-08-10)
- to_date: End date for the economic calendar (default: 2023-10-10)
/economics/economics-calendar
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/economics/economics-calendar?from_date=2023-08-10&to_date=2023-10-10" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Commodities
Commodity quotes
Latest short quotes for supported commodity symbols.
Each row includes price, volume, change, and last update time
(same fields as /quotes/quote-short/{symbol}).
/commodities/quotes
Interactive Example
curl -X GET "https://api.quantbotly.com/commodities/quotes" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
]
Commodity quote for one symbol
Latest short quote for a supported commodity symbol.
/commodities/quotes/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/commodities/quotes/GCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
Commodity daily OHLCV candles
Daily OHLCV candles for a supported commodity symbol.
Pass from + to, or last_days, or omit all three for the default lookback.
Bars are sorted newest first.
/commodities/daily/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/commodities/daily/GCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Commodity intraday OHLCV candles
Intraday OHLCV candles for a supported commodity symbol.
Use from + to or last_days for a window; otherwise the latest bars are returned.
Bars are sorted newest first.
/commodities/intraday/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/commodities/intraday/GCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Forex
Forex quotes
Latest short quotes for supported forex pairs.
Each row includes price, volume, change, and last update time
(same fields as /quotes/quote-short/{symbol}).
/forex/quotes
Interactive Example
curl -X GET "https://api.quantbotly.com/forex/quotes" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
]
Forex quote for one symbol
Latest short quote for a supported forex pair.
/forex/quotes/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/forex/quotes/EURUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
Forex daily OHLCV candles
Daily OHLCV candles for a supported forex pair.
Pass from + to, or last_days, or omit all three for the default lookback.
Bars are sorted newest first.
/forex/daily/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/forex/daily/EURUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Forex intraday OHLCV candles
Intraday OHLCV candles for a supported forex pair.
Use from + to or last_days for a window; otherwise the latest bars are returned.
Bars are sorted newest first.
/forex/intraday/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/forex/intraday/EURUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Cryptocurrencies
Cryptocurrency quotes
Latest short quotes for supported cryptocurrency symbols.
Each row includes price, volume, change, and last update time
(same fields as /quotes/quote-short/{symbol}).
/crypto/quotes
Interactive Example
curl -X GET "https://api.quantbotly.com/crypto/quotes" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
]
Cryptocurrency quote for one symbol
Latest short quote for a supported cryptocurrency symbol.
/crypto/quotes/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/crypto/quotes/BTCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{
"symbol": "string",
"price": 0,
"volume": 0,
"change_value": 0,
"change_percent": 0,
"updated_at": "string"
}
Cryptocurrency daily OHLCV candles
Daily OHLCV candles for a supported cryptocurrency symbol.
Pass from + to, or last_days, or omit all three for the default lookback.
Bars are sorted newest first.
/crypto/daily/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/crypto/daily/BTCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Cryptocurrency intraday OHLCV candles
Intraday OHLCV candles for a supported cryptocurrency symbol.
Use from + to or last_days for a window; otherwise the latest bars are returned.
Bars are sorted newest first.
/crypto/intraday/{symbol}
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/crypto/intraday/BTCUSD" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
[
{
"date": "string",
"open": 0,
"low": 0,
"high": 0,
"close": 0,
"volume": 0,
"vwap": 0
}
]
Indexes
Constituents
Get the current constituents for a specific index.
- index_type: One of
SP500,NASDAQ, orDOWJONES
/indexes/
Request Parameters
Interactive Example
curl -X GET "https://api.quantbotly.com/indexes/" \
-H "X-API-KEY": "YOUR_API_KEY"
Response Example
{}
Interactive Example
Response Example