API Documentation
Access real-time and historical market data with easy-to-integrate RESTful endpoints.

Products

high demand High demand

Endpoint

3 endpoint(s) for Etfs
Search Icon
  • CFD ETF Last Price
  • CFD ETF Market Aggregates API
  • CFD ETF Previous Close API

CFD ETF Market Aggregates API

With the CFD ETF Market Aggregates API, you can get the tick bars of the ETF (Exchange Traded Fund) market.

URL Schema

https://api.finage.co.uk/agg/etf/{ symbol }/{ time }/{ from }/{ to }?apikey=YOUR_API_KEY

Example Request

https://api.finage.co.uk/agg/etf/qqq/1day/2021-02-05/2021-03-02?apikey=YOUR_API_KEY

Example Output

{
  "symbol": "QQQ",
  "totalResults": 16,
  "results": [
{
      "o": "331.22000",
      "h": "332.40250",
      "l": "329.53000",
      "c": "331.48001",
      "v": "20774820",
      "t": "2021-02-05"
    },
{
      "o": "333.10001",
      "h": "333.73999",
      "l": "331.41010",
      "c": "333.59000",
      "v": "18421116",
      "t": "2021-02-08"
    },
{
      "o": "332.66000",
      "h": "334.79990",
      "l": "332.65381",
      "c": "333.48999",
      "v": "16706362",
      "t": "2021-02-09"
    }
  ]
}

Input Parameters (* required field)

  • * symbolSymbol of the ETF
  • * timeSize of the time. [1min, 5min, 15min, 30min, 45min, 1h, 2h, 4h, 1day, 1week, 1month]
  • * fromStart date [yyyy-MM-dd]
  • * toEnd date [yyyy-MM-dd]
  • limitLimit of the results. Default is 100, maximum allowed limit is 5000. Please set a limit if you are using the API in the production.
  • sortYou can sort the results by timestamp. asc will return ascending results oldest to newest, desc will return descending results newest to oldest. Default is asc.
  • date_formatChoose date format: 'dt' for datetime or 'ts' for timestamp. [Default: timestamp]
  • dbt_filterDaily-based time filter. You can allow the time filters to filter daily based. Otherwise, the filter will only trim the start and end of the output. Default is false.
  • stStart time in UTC. (Eg. 17:30)
  • etEnd time in UTC. (Eg. 17:45)

Output Parameters

  • symbolSymbol of the ETF
  • totalResultsTotal result size
  • oOpen price
  • hHighest price
  • lLowest price
  • cClose price
  • vVolume
  • tTimestamp [ms]
Crafted, simply, by Finage © 2025 | All rights reserved.