查询某个币种的历史价格。
GET https://www.okx.com/api/v5/waas/coin/historical-price
Parameter | Type | Required | Description |
---|---|---|---|
chainId | String | 是 | 链唯一标识 |
tokenAddress | String | 否 | 如果不传递,则查询主网币 |
limit | String | 否 | 默认 50,最多 200 条,设置超过 200 报错 |
after | String | 否 | 整分钟时间戳 13 位 (毫秒),查询小于该时间的币价 |
before | String | 否 | 整分钟时间戳 13 位 (毫秒),查询大于该时间的币价。before 和 after 都不传时默认使用 after 为当前时间 |
period | String | 否 | 1m 1 分钟 5m 5 分钟 30m 30 分钟 1h 1 小时 1D 1 天 (default) |
Data 里的结果代表此次结果的成功与失败,true 代表成功, false 代表失败
Parameter | Type | Description |
---|---|---|
time | String | 分钟时间戳 (整分钟) |
price | String | 币种价格 (精度 18 位) |
curl --location --request GET 'https://www.okx.com/api/v5/waas/coin/historical-price?chainId=1&limit=5&after=1700040600000&period=5m' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
{
"code": "0",
"msg": "success",
"data": [
{
"time": "1700040600000",
"price": "1994.430000000000000000"
},
{
"time": "1700040300000",
"price": "1994.190000000000000000"
},
{
"time": "1700040000000",
"price": "1992.090000000000000000"
},
{
"time": "1700039700000",
"price": "1992.190000000000000000"
},
{
"time": "1700039400000",
"price": "1990.190000000000000000"
}
]
}