Allows to get historical candle chart data for specific token pair and period

GEThttps://api.1inch.com/charts/v1.0/chart/aggregated/candle/{token0}/{token1}/{seconds}/{chainId}
Supported on:
EthereumBaseBNB ChainGnosisOptimismPolygonSonicUnichainArbitrum

Parameters

token0
* string path
token1
* string path
seconds
* number (Enum)path
chainId
* number (Enum)path

Request Body

This request doesn’t have any request body.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const axios = require('axios');

async function httpCall() {
  const url =
    'https://api.1inch.com/charts/v1.0/chart/aggregated/candle/{token0}/{token1}/{seconds}/{chainId}';

  const config = {
    headers: {
      Authorization: `Bearer ${API_KEY}`,
    },
    params: {},
    paramsSerializer: {
      indexes: null,
    },
  };
  const body = {};

  try {
    const response = await axios.get(url, body, config);
    console.log(response.data);
  } catch (error) {
    console.error(error);
  }
}

Returns

200
CandlesResponse object
data
* array
items
Candle object
time
* number
open
* number
high
* number
low
* number
close
* number
JSON
1
2
3
4
5
6
7
8
9
10
11
12
{
  "data": [
    {
      "time": 1697385600,
      "open": 1556.156815313485,
      "high": 1589.1439810493962,
      "low": 1539.1121304866367,
      "close": 1558.2917685385037
    }
  ]
}

Did you find what you need?