Endpoints

EndpointEndpoint parameter name
Searchsearch
Quotequote
Crypto Pricecrypto_price
Candlecandle
ETF Countryetf_country
ETF Dividendetf_dividend
ETF Profileetf_profile
ETF Top Holdingsetf_top_holdings
ETF Holdingsetf_holdings
ETF Sectoretf_sector
ETF Fundamentalsetf_fundamentals
ETF Metricsetf_metrics
Priceprice

Example

If you want to bulk download the ETF dividends: You can use following JSON:

{
  "symbols": [
    {
      "symbol": "SPY"
    },
    {
      "symbol": "QQQ"
    }
  ],
  "endpoint": "etf_dividend",
  "params": {}
}

Important: You still need the empty params entry.


Getting price charts via bulk endpoint

{
      "symbols": [{"symbol": "AAPL"}, {"symbol": "BLK"}],
      "endpoint": "candle",
      "params": {
          "resolution": "D",
          "from": "1727958384",
          "to": "1730367737"
      }
  }

Getting crypto prices via bulk endpoint

{
      "symbols": [{"symbol": "BTCUSD"}, {"symbol": "ETHUSD"}],
      "endpoint": "crypto_price",
      "params": {
          "resolution": "D",
          "from": "1727958384",
          "to": "1730367737"
      }
  }

Parameter

If you need to provide additional parameters e.g. the resolution, from_date, to_candle if you use the candle endpoint, you need provide them in the parameters argument.

If you don't have any parameters, please provide a empty dictionary.

Language
Credentials
Header
Click Try It! to start a request and see the response here!