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 Indices
Search Icon
  • CFD Index Last Price
  • CFD Index Market Aggregates API
  • CFD Index Previous Close API

CFD Index Market Aggregates API

With the Index Market Aggregates API, you can get the tick bars of the index market.

URL Schema

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

Example Request

https://api.finage.co.uk/agg/index/US2000/1day/2025-11-01/2025-11-05?apikey=YOUR_API_KEY

Example Output

{
  "symbol": "US2000",
  "totalResults": 3,
  "results": [
{
      "o": 2478.74956,
      "h": 2478.74956,
      "l": 2478.74956,
      "c": 2478.74956,
      "v": 1,
      "t": 1761955200000
    },
{
      "o": 2479.0647,
      "h": 2481.97639,
      "l": 2441.67663,
      "c": 2470.5729,
      "v": 9238,
      "t": 1762128000000
    },
{
      "o": 2470.69648,
      "h": 2470.96822,
      "l": 2425.40043,
      "c": 2427.13484,
      "v": 10237,
      "t": 1762214400000
    }
  ]
}

Input Parameters (* required field)

  • * symbolSymbol Name
  • * 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 index
  • totalResultsTotal result size
  • oOpen price
  • hHighest price
  • lLowest price
  • cClose price
  • vVolume
  • tTimestamp [ms]
Crafted, simply, by Finage © 2025 | All rights reserved.