Loading endpoints…

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).

get
/available-securities/search
https://api.quantbotly.com/available-securities/search
queryqueryrequired

The search query for a ticker symbol or company/security name.

limitquery

Limit the number of search results.

exchange_short_namequery

Filter by stock exchange short name.

typequery

Filter by security type.

curl -X GET "https://api.quantbotly.com/available-securities/search?query=AA&limit=10" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/stock-list
https://api.quantbotly.com/available-securities/stock-list
curl -X GET "https://api.quantbotly.com/available-securities/stock-list" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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`).

get
/available-securities/stock-list/top-by-volume-rank
https://api.quantbotly.com/available-securities/stock-list/top-by-volume-rank
limitquery
Query parameter
curl -X GET "https://api.quantbotly.com/available-securities/stock-list/top-by-volume-rank?limit=3000" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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).

get
/available-securities/etf-list
https://api.quantbotly.com/available-securities/etf-list
curl -X GET "https://api.quantbotly.com/available-securities/etf-list" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/crypto-list
https://api.quantbotly.com/available-securities/crypto-list
curl -X GET "https://api.quantbotly.com/available-securities/crypto-list" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/forex-list
https://api.quantbotly.com/available-securities/forex-list
curl -X GET "https://api.quantbotly.com/available-securities/forex-list" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/commodities-list
https://api.quantbotly.com/available-securities/commodities-list
curl -X GET "https://api.quantbotly.com/available-securities/commodities-list" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/financial-statement-symbol-lists
https://api.quantbotly.com/available-securities/financial-statement-symbol-lists
curl -X GET "https://api.quantbotly.com/available-securities/financial-statement-symbol-lists" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "symbols": [
    "string"
  ]
}

Available Traded List

Discover all actively traded stocks. Includes ticker/symbol, name, price, and exchange information.

get
/available-securities/available-traded-list
https://api.quantbotly.com/available-securities/available-traded-list
curl -X GET "https://api.quantbotly.com/available-securities/available-traded-list" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/symbol-changes
https://api.quantbotly.com/available-securities/symbol-changes
curl -X GET "https://api.quantbotly.com/available-securities/symbol-changes" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "date": "string",
    "name": "string",
    "oldSymbol": "string",
    "newSymbol": "string"
  }
]

Exchange Symbols

Get all tickers/symbols listed on the given exchange.

get
/available-securities/exchange-symbols/{exchange}
https://api.quantbotly.com/available-securities/exchange-symbols/{exchange}
exchangepathrequired
Query parameter
curl -X GET "https://api.quantbotly.com/available-securities/exchange-symbols/{exchange}" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/available-securities/available-indexes
https://api.quantbotly.com/available-securities/available-indexes
curl -X GET "https://api.quantbotly.com/available-securities/available-indexes" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/company-information/company-profile/{symbol}
https://api.quantbotly.com/company-information/company-profile/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/company-information/company-profile/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/company-information/employee-count
https://api.quantbotly.com/company-information/employee-count
symbolqueryrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/company-information/employee-count?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/company-information/stock-screener
https://api.quantbotly.com/company-information/stock-screener
marketCapMoreThanquery

Market cap greater than

marketCapLowerThanquery

Market cap less than

priceMoreThanquery

Price greater than

priceLowerThanquery

Price less than

volumeMoreThanquery

Volume greater than

volumeLowerThanquery

Volume lower than

sectorquery

Filter by sector

countryquery

Filter by country

limitquery

Limit the number of results

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"
[
  {
    "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.

get
/company-information/stock-grade/{symbol}
https://api.quantbotly.com/company-information/stock-grade/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/company-information/stock-grade/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

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`.

get
/quotes/quote-short-batch
https://api.quantbotly.com/quotes/quote-short-batch
symbolsqueryrequired

Comma-separated ticker symbols (max 50 during testing)

curl -X GET "https://api.quantbotly.com/quotes/quote-short-batch?symbols=AAPL%2CMSFT%2CZZZZ" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/quotes/quote-full-batch
https://api.quantbotly.com/quotes/quote-full-batch
symbolsqueryrequired

Comma-separated ticker symbols (max 50 during testing)

curl -X GET "https://api.quantbotly.com/quotes/quote-full-batch?symbols=AAPL%2CMSFT%2CZZZZ" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/quotes/stock-price-change-batch
https://api.quantbotly.com/quotes/stock-price-change-batch
symbolsqueryrequired

Comma-separated ticker symbols (max 50 during testing)

curl -X GET "https://api.quantbotly.com/quotes/stock-price-change-batch?symbols=AAPL%2CBTCUSD%2CZZZZ" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/quotes/quote-full/{symbol}
https://api.quantbotly.com/quotes/quote-full/{symbol}
symbolpathrequired

The stock symbol of the company

curl -X GET "https://api.quantbotly.com/quotes/quote-full/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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).

get
/quotes/quote-short/{symbol}
https://api.quantbotly.com/quotes/quote-short/{symbol}
symbolpathrequired

The stock symbol of the company

curl -X GET "https://api.quantbotly.com/quotes/quote-short/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/quotes/stock-price-change/{symbol}
https://api.quantbotly.com/quotes/stock-price-change/{symbol}
symbolpathrequired

The stock symbol of the company

curl -X GET "https://api.quantbotly.com/quotes/stock-price-change/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/financial-statements/income-statement/{symbol}
https://api.quantbotly.com/financial-statements/income-statement/{symbol}
symbolpathrequired

Stock/ETF symbol

periodquery

Annual or quarterly statements

limitquery

Max rows to return (newest first)

curl -X GET "https://api.quantbotly.com/financial-statements/income-statement/AAPL?limit=8" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/financial-statements/balance-sheet-statement/{symbol}
https://api.quantbotly.com/financial-statements/balance-sheet-statement/{symbol}
symbolpathrequired

Stock/ETF symbol

periodquery

Annual or quarterly statements

limitquery

Max rows to return (newest first)

curl -X GET "https://api.quantbotly.com/financial-statements/balance-sheet-statement/AAPL?limit=8" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/financial-statements/cash-flow-statement/{symbol}
https://api.quantbotly.com/financial-statements/cash-flow-statement/{symbol}
symbolpathrequired

Stock/ETF symbol

periodquery

Annual or quarterly statements

limitquery

Max rows to return (newest first)

curl -X GET "https://api.quantbotly.com/financial-statements/cash-flow-statement/AAPL?limit=8" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/financial-statements/financial-reports-dates
https://api.quantbotly.com/financial-statements/financial-reports-dates
symbolqueryrequired

Stock symbol

curl -X GET "https://api.quantbotly.com/financial-statements/financial-reports-dates?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/statement-analysis/key-metrics/{symbol}
https://api.quantbotly.com/statement-analysis/key-metrics/{symbol}
symbolpathrequired

Stock/ETF symbol

periodquery

Annual or quarterly data

limitquery

Max rows to return (newest first)

curl -X GET "https://api.quantbotly.com/statement-analysis/key-metrics/AAPL?limit=8" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {}
]

Key metrics (TTM)

Trailing-twelve-month key financial metrics for a supported symbol.

get
/statement-analysis/key-metrics-ttm/{symbol}
https://api.quantbotly.com/statement-analysis/key-metrics-ttm/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/statement-analysis/key-metrics-ttm/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {}
]

Financial ratios

Annual or quarterly financial ratios for a supported symbol, newest first.

get
/statement-analysis/ratios/{symbol}
https://api.quantbotly.com/statement-analysis/ratios/{symbol}
symbolpathrequired

Stock/ETF symbol

periodquery

Annual or quarterly data

limitquery

Max rows to return (newest first)

curl -X GET "https://api.quantbotly.com/statement-analysis/ratios/AAPL?limit=8" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {}
]

Financial ratios (TTM)

Trailing-twelve-month financial ratios for a supported symbol.

get
/statement-analysis/ratios-ttm/{symbol}
https://api.quantbotly.com/statement-analysis/ratios-ttm/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/statement-analysis/ratios-ttm/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {}
]

Price Targets

Price target news

Recent analyst price-target news for a symbol (newest first). Use limit to control how many rows are returned.

get
/price-targets/price-target/{symbol}
https://api.quantbotly.com/price-targets/price-target/{symbol}
symbolpathrequired

Stock/ETF symbol

limitquery

Number of newest rows

curl -X GET "https://api.quantbotly.com/price-targets/price-target/AAPL?limit=10" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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).

get
/price-targets/price-target-summary/{symbol}
https://api.quantbotly.com/price-targets/price-target-summary/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/price-targets/price-target-summary/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/price-targets/price-target-consensus/{symbol}
https://api.quantbotly.com/price-targets/price-target-consensus/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/price-targets/price-target-consensus/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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).

get
/price-targets/price-target-rss-feed
https://api.quantbotly.com/price-targets/price-target-rss-feed
limitquery

Number of newest rows

curl -X GET "https://api.quantbotly.com/price-targets/price-target-rss-feed?limit=10" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/upgrades-downgrades/upgrades-downgrades/{symbol}
https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades/{symbol}
symbolpathrequired

Stock/ETF symbol

limitquery

Number of newest rows

curl -X GET "https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades/AAPL?limit=10" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/upgrades-downgrades/upgrades-downgrades-consensus/{symbol}
https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades-consensus/{symbol}
symbolpathrequired

Stock/ETF symbol

curl -X GET "https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades-consensus/AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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).

get
/upgrades-downgrades/upgrades-downgrades-rss-feed
https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades-rss-feed
limitquery

Number of newest rows

curl -X GET "https://api.quantbotly.com/upgrades-downgrades/upgrades-downgrades-rss-feed?limit=10" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/articles
https://api.quantbotly.com/news/articles
pagequery
Query parameter
sizequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/articles?page=0&size=5" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/news/general-news
https://api.quantbotly.com/news/general-news
limitquery

How many of the newest articles to return. Omit to use the default. Results are ordered newest first.

curl -X GET "https://api.quantbotly.com/news/general-news?limit=20" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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 tickers as a comma-separated list.
  • Pass limit for 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. So limit is a total across all tickers, not a per-symbol count.

Limits

  • Up to 50 symbols per request (HTTP 400 if exceeded).
  • limit must 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
get
/news/stock-news
https://api.quantbotly.com/news/stock-news
tickersquery

Comma-separated stock/ETF symbols to include (e.g. AAPL or AAPL,MSFT,NVDA). Maximum 50 symbols. Duplicates are ignored. Exceeding the maximum returns HTTP 400.

limitquery

Maximum number of articles to return after merging all requested symbols (1–250; default 20). Newest first. This is a total across all tickers, not per symbol.

curl -X GET "https://api.quantbotly.com/news/stock-news?tickers=AAPL&limit=20" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/stock-news-sentiments
https://api.quantbotly.com/news/stock-news-sentiments
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/stock-news-sentiments?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/forex-news
https://api.quantbotly.com/news/forex-news
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/forex-news?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/crypto-news
https://api.quantbotly.com/news/crypto-news
pagequery
Query parameter
symbolquery
Query parameter
curl -X GET "https://api.quantbotly.com/news/crypto-news?page=0&symbol=BTCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/press-releases
https://api.quantbotly.com/news/press-releases
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/press-releases?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/press-releases/{symbol}
https://api.quantbotly.com/news/press-releases/{symbol}
symbolpathrequired
Query parameter
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/press-releases/{symbol}?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/historical-social-sentiment
https://api.quantbotly.com/news/historical-social-sentiment
symbolquery
Query parameter
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/historical-social-sentiment?symbol=AAPL&page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/trending-social-sentiment
https://api.quantbotly.com/news/trending-social-sentiment
typequery
Query parameter
sourcequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/trending-social-sentiment?type=bullish&source=stocktwits" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/news/social-sentiment-changes
https://api.quantbotly.com/news/social-sentiment-changes
typequery
Query parameter
sourcequery
Query parameter
curl -X GET "https://api.quantbotly.com/news/social-sentiment-changes?type=bullish&source=stocktwits" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/earnings-transcripts/earning-call-transcript/{symbol}
https://api.quantbotly.com/earnings-transcripts/earning-call-transcript/{symbol}
symbolpathrequired
Query parameter
yearquery
Query parameter
quarterquery
Query parameter
curl -X GET "https://api.quantbotly.com/earnings-transcripts/earning-call-transcript/{symbol}?year=2020&quarter=3" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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).

get
/earnings-transcripts/transcript-dates
https://api.quantbotly.com/earnings-transcripts/transcript-dates
symbolqueryrequired
Query parameter
curl -X GET "https://api.quantbotly.com/earnings-transcripts/transcript-dates" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {}
]

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.

get
/earnings-transcripts/batch-earning-call-transcript/{symbol}
https://api.quantbotly.com/earnings-transcripts/batch-earning-call-transcript/{symbol}
symbolpathrequired
Query parameter
yearquery
Query parameter
curl -X GET "https://api.quantbotly.com/earnings-transcripts/batch-earning-call-transcript/{symbol}?year=2020" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/earnings/earning-calendar
https://api.quantbotly.com/earnings/earning-calendar
from_datequery
Query parameter
to_datequery
Query parameter
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"
[
  {
    "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.

get
/earnings/historical-earning-calendar/{symbol}
https://api.quantbotly.com/earnings/historical-earning-calendar/{symbol}
symbolpathrequired
Query parameter
limitquery
Query parameter
curl -X GET "https://api.quantbotly.com/earnings/historical-earning-calendar/{symbol}?limit=100" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/earnings/earning-calendar-confirmed
https://api.quantbotly.com/earnings/earning-calendar-confirmed
from_datequery
Query parameter
to_datequery
Query parameter
limitquery
Query parameter
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"
[
  {
    "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.

get
/earnings/earnings-surprises/{symbol}
https://api.quantbotly.com/earnings/earnings-surprises/{symbol}
symbolpathrequired
Query parameter
curl -X GET "https://api.quantbotly.com/earnings/earnings-surprises/{symbol}" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/dividends/stock-dividend-calendar
https://api.quantbotly.com/dividends/stock-dividend-calendar
from_datequery
Query parameter
to_datequery
Query parameter
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"
[
  {
    "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.

get
/dividends/historical-dividend/{symbol}
https://api.quantbotly.com/dividends/historical-dividend/{symbol}
symbolpathrequired
Query parameter
curl -X GET "https://api.quantbotly.com/dividends/historical-dividend/{symbol}" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.
get
/splits/calendar
https://api.quantbotly.com/splits/calendar
from_datequery
Query parameter
to_datequery
Query parameter
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"
{}

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.
get
/splits/historical/{symbol}
https://api.quantbotly.com/splits/historical/{symbol}
symbolpathrequired
Query parameter
curl -X GET "https://api.quantbotly.com/splits/historical/{symbol}" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

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.

get
/ipos/confirmed
https://api.quantbotly.com/ipos/confirmed
from_datequery
Query parameter
to_datequery
Query parameter
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"
[
  {
    "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.

get
/ipos/prospectus
https://api.quantbotly.com/ipos/prospectus
from_datequery
Query parameter
to_datequery
Query parameter
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"
[
  {
    "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.

get
/ipos/calendar-by-symbol
https://api.quantbotly.com/ipos/calendar-by-symbol
from_datequery
Query parameter
to_datequery
Query parameter
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"
[
  {
    "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.

get
/mergers-acquisitions/rss-feed
https://api.quantbotly.com/mergers-acquisitions/rss-feed
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/mergers-acquisitions/rss-feed?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/mergers-acquisitions/search
https://api.quantbotly.com/mergers-acquisitions/search
namequery
Query parameter
curl -X GET "https://api.quantbotly.com/mergers-acquisitions/search?name=syros" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/historical-prices/candle-chart-daily-adjusted
https://api.quantbotly.com/historical-prices/candle-chart-daily-adjusted
symbolquery

Ticker symbol (e.g. AAPL, BTCUSD, EURUSD).

last_daysquery

Number of calendar days to look back from today. When omitted with no from / to, daily endpoints default to 252 days. Minimum 1.

fromquery

Inclusive start date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

toquery

Inclusive end date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

curl -X GET "https://api.quantbotly.com/historical-prices/candle-chart-daily-adjusted?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/historical-prices/line-chart-daily-adjusted
https://api.quantbotly.com/historical-prices/line-chart-daily-adjusted
symbolquery

Ticker symbol (e.g. AAPL, BTCUSD, EURUSD).

last_daysquery

Number of calendar days to look back from today. When omitted with no from / to, daily endpoints default to 252 days. Minimum 1.

fromquery

Inclusive start date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

toquery

Inclusive end date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

curl -X GET "https://api.quantbotly.com/historical-prices/line-chart-daily-adjusted?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "date": "string",
    "close": 0,
    "volume": 0,
    "change": 0,
    "change_percent": 0
  }
]

Intraday OHLCV candles

API documentation for this Quantbotly service.

get
/historical-prices/candle-chart-intraday
https://api.quantbotly.com/historical-prices/candle-chart-intraday
symbolquery

Ticker symbol (e.g. AAPL, BTCUSD, EURUSD).

timeframequery

Bar size: 5min, 15min, or 60min.

last_daysquery

Optional calendar-day lookback when used with or without from / to. When all range params are omitted, the latest 500 bars are returned. Minimum 1.

fromquery

Inclusive start date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

toquery

Inclusive end date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

curl -X GET "https://api.quantbotly.com/historical-prices/candle-chart-intraday?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "date": "string",
    "open": 0,
    "low": 0,
    "high": 0,
    "close": 0,
    "volume": 0,
    "vwap": 0
  }
]

Intraday close and volume

API documentation for this Quantbotly service.

get
/historical-prices/line-chart-intraday
https://api.quantbotly.com/historical-prices/line-chart-intraday
symbolquery

Ticker symbol (e.g. AAPL, BTCUSD, EURUSD).

timeframequery

Bar size: 1min, 5min, 15min, or 60min.

last_daysquery

Optional calendar-day lookback when used with or without from / to. When all range params are omitted, the latest 500 bars are returned. Minimum 1.

fromquery

Inclusive start date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

toquery

Inclusive end date (YYYY-MM-DD). For US stocks and ETFs, dates are trading session days.

curl -X GET "https://api.quantbotly.com/historical-prices/line-chart-intraday?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/technical-indicators/
https://api.quantbotly.com/technical-indicators/
timeframequery
Query parameter
symbolquery
Query parameter
typequery
Query parameter
periodquery
Query parameter
from_datequery
Query parameter
to_datequery
Query parameter
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"
{}

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.

get
/etfs/holdings-dates
https://api.quantbotly.com/etfs/holdings-dates
symbolquery
Query parameter
cikquery
Query parameter
curl -X GET "https://api.quantbotly.com/etfs/holdings-dates?symbol=SPY" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/etfs/holdings
https://api.quantbotly.com/etfs/holdings
symbolquery
Query parameter
datequery
Query parameter
cikquery
Query parameter
curl -X GET "https://api.quantbotly.com/etfs/holdings?symbol=SPY&date=2023-09-30" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/etfs/holder/{symbol}
https://api.quantbotly.com/etfs/holder/{symbol}
symbolpathrequired
Query parameter
curl -X GET "https://api.quantbotly.com/etfs/holder/{symbol}" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/etfs/info
https://api.quantbotly.com/etfs/info
symbolquery
Query parameter
curl -X GET "https://api.quantbotly.com/etfs/info?symbol=SPY" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/politicians/trading
https://api.quantbotly.com/politicians/trading
symbolquery
Query parameter
curl -X GET "https://api.quantbotly.com/politicians/trading?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/politicians/trading-rss-feed
https://api.quantbotly.com/politicians/trading-rss-feed
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/politicians/trading-rss-feed?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/politicians/disclosure
https://api.quantbotly.com/politicians/disclosure
symbolquery
Query parameter
curl -X GET "https://api.quantbotly.com/politicians/disclosure?symbol=AAPL" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/politicians/disclosure-rss-feed
https://api.quantbotly.com/politicians/disclosure-rss-feed
pagequery
Query parameter
curl -X GET "https://api.quantbotly.com/politicians/disclosure-rss-feed?page=0" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/market-performance/market-index
https://api.quantbotly.com/market-performance/market-index
curl -X GET "https://api.quantbotly.com/market-performance/market-index" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

Sector Performance

Get the performance of each sector of the stock market over a specified period of time.

get
/market-performance/sector-performance
https://api.quantbotly.com/market-performance/sector-performance
curl -X GET "https://api.quantbotly.com/market-performance/sector-performance" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

Sector Pe Ratio

Get the price-to-earnings (PE) ratio for each sector of the stock market.

get
/market-performance/sector-pe-ratio
https://api.quantbotly.com/market-performance/sector-pe-ratio
datequery
Query parameter
exchangequery
Query parameter
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"
[
  {
    "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).

get
/market-performance/market-biggest-gainers
https://api.quantbotly.com/market-performance/market-biggest-gainers
curl -X GET "https://api.quantbotly.com/market-performance/market-biggest-gainers" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

Biggest losers

Stocks with the largest price decreases for the current session, ranked by percent change (lowest first).

get
/market-performance/market-biggest-losers
https://api.quantbotly.com/market-performance/market-biggest-losers
curl -X GET "https://api.quantbotly.com/market-performance/market-biggest-losers" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

Most active

Stocks with the highest trading volume for the current session, ranked by volume (highest first).

get
/market-performance/market-most-active
https://api.quantbotly.com/market-performance/market-most-active
curl -X GET "https://api.quantbotly.com/market-performance/market-most-active" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}

Industry Pe Ratio

Get the price-to-earnings (PE) ratio for each industry of the stock market.

get
/market-performance/industry-pe-ratio
https://api.quantbotly.com/market-performance/industry-pe-ratio
datequery
Query parameter
exchangequery
Query parameter
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"
[
  {
    "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.

get
/market-performance/sector-historical-performance
https://api.quantbotly.com/market-performance/sector-historical-performance
from_datequery
Query parameter
to_datequery
Query parameter
limitquery
Query parameter
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"
[
  {
    "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)
get
/economics/treasury-rates
https://api.quantbotly.com/economics/treasury-rates
from_datequery
Query parameter
to_datequery
Query parameter
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"
{}

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.

get
/economics/economic-indicators
https://api.quantbotly.com/economics/economic-indicators
namequery
Query parameter
from_datequery
Query parameter
to_datequery
Query parameter
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"
{}

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)
get
/economics/economics-calendar
https://api.quantbotly.com/economics/economics-calendar
from_datequery
Query parameter
to_datequery
Query parameter
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"
{}

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}).

get
/commodities/quotes
https://api.quantbotly.com/commodities/quotes
curl -X GET "https://api.quantbotly.com/commodities/quotes" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/commodities/quotes/{symbol}
https://api.quantbotly.com/commodities/quotes/{symbol}
symbolpathrequired

Commodity symbol (e.g. GCUSD). Must be a supported commodity ticker.

curl -X GET "https://api.quantbotly.com/commodities/quotes/GCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/commodities/daily/{symbol}
https://api.quantbotly.com/commodities/daily/{symbol}
symbolpathrequired

Commodity symbol (e.g. GCUSD). Must be a supported commodity ticker.

last_daysquery

Calendar-day lookback. When omitted with no from/to, daily defaults to 252 days.

fromquery

Inclusive start date (YYYY-MM-DD).

toquery

Inclusive end date (YYYY-MM-DD).

curl -X GET "https://api.quantbotly.com/commodities/daily/GCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/commodities/intraday/{symbol}
https://api.quantbotly.com/commodities/intraday/{symbol}
symbolpathrequired

Commodity symbol (e.g. GCUSD). Must be a supported commodity ticker.

timeframequery

Bar size: 1min, 5min, 15min, or 60min.

last_daysquery

Optional lookback. When all range params omitted, latest 500 bars.

fromquery

Inclusive start date (YYYY-MM-DD).

toquery

Inclusive end date (YYYY-MM-DD).

curl -X GET "https://api.quantbotly.com/commodities/intraday/GCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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}).

get
/forex/quotes
https://api.quantbotly.com/forex/quotes
curl -X GET "https://api.quantbotly.com/forex/quotes" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/forex/quotes/{symbol}
https://api.quantbotly.com/forex/quotes/{symbol}
symbolpathrequired

Forex pair (e.g. EURUSD). Must be a supported currency pair.

curl -X GET "https://api.quantbotly.com/forex/quotes/EURUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/forex/daily/{symbol}
https://api.quantbotly.com/forex/daily/{symbol}
symbolpathrequired

Forex pair (e.g. EURUSD). Must be a supported currency pair.

last_daysquery

Calendar-day lookback. When omitted with no from/to, daily defaults to 252 days.

fromquery

Inclusive start date (YYYY-MM-DD).

toquery

Inclusive end date (YYYY-MM-DD).

curl -X GET "https://api.quantbotly.com/forex/daily/EURUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/forex/intraday/{symbol}
https://api.quantbotly.com/forex/intraday/{symbol}
symbolpathrequired

Forex pair (e.g. EURUSD). Must be a supported currency pair.

timeframequery

Bar size: 1min, 5min, 15min, or 60min.

last_daysquery

Optional lookback. When all range params omitted, latest 500 bars.

fromquery

Inclusive start date (YYYY-MM-DD).

toquery

Inclusive end date (YYYY-MM-DD).

curl -X GET "https://api.quantbotly.com/forex/intraday/EURUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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}).

get
/crypto/quotes
https://api.quantbotly.com/crypto/quotes
curl -X GET "https://api.quantbotly.com/crypto/quotes" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/crypto/quotes/{symbol}
https://api.quantbotly.com/crypto/quotes/{symbol}
symbolpathrequired

Crypto symbol (e.g. BTCUSD). Must be a supported cryptocurrency ticker.

curl -X GET "https://api.quantbotly.com/crypto/quotes/BTCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
{
  "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.

get
/crypto/daily/{symbol}
https://api.quantbotly.com/crypto/daily/{symbol}
symbolpathrequired

Crypto symbol (e.g. BTCUSD). Must be a supported cryptocurrency ticker.

last_daysquery

Calendar-day lookback. When omitted with no from/to, daily defaults to 252 days.

fromquery

Inclusive start date (YYYY-MM-DD).

toquery

Inclusive end date (YYYY-MM-DD).

curl -X GET "https://api.quantbotly.com/crypto/daily/BTCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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.

get
/crypto/intraday/{symbol}
https://api.quantbotly.com/crypto/intraday/{symbol}
symbolpathrequired

Crypto symbol (e.g. BTCUSD). Must be a supported cryptocurrency ticker.

timeframequery

Bar size: 1min, 5min, 15min, or 60min.

last_daysquery

Optional lookback. When all range params omitted, latest 500 bars.

fromquery

Inclusive start date (YYYY-MM-DD).

toquery

Inclusive end date (YYYY-MM-DD).

curl -X GET "https://api.quantbotly.com/crypto/intraday/BTCUSD" \
  -H "X-API-KEY": "YOUR_API_KEY"
[
  {
    "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, or DOWJONES
get
/indexes/
https://api.quantbotly.com/indexes/
index_typequery
Query parameter
curl -X GET "https://api.quantbotly.com/indexes/" \
  -H "X-API-KEY": "YOUR_API_KEY"
{}