Returns historical token prices at USD by time interval
Supported on: Ethereum Base Solana BNB Chain Unichain Arbitrum Avalanche ZKsync Gnosis Optimism Polygon Linea Sonic
Parameters
tokenAddress
* string pathAddress of token contract
from_time
number queryfrom time (optional)
provider
string (Enum)queryname of chart provider (optional)
interval
* string (Enum)queryeg. 24h,3d,14d,max
chain
* number pathChain id of network
Request Body
This request doesn’t have any request body.
JavaScript
Copy
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
26
27
const axios = require('axios');
async function httpCall() {
const url =
'https://api.1inch.com/token-details/v1.0/charts/interval/{chain}/{tokenAddress}';
const config = {
headers: {
Authorization: `Bearer ${API_KEY}`,
},
params: {
from_time: 1658841720,
},
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
500
d
* array Chart data
items
ChartPointResponse object t
* number unix time at sec
v
* number price at usd
p
* string Chart provider (optional)
JSON
Copy
1
2
3
4
5
6
7
8
9
10
{
"d": [
{
"t": 0,
"v": 0
}
],
"p": "string"
}