美文网首页
Chainlink接口

Chainlink接口

作者: 云彩修建站站长 | 来源:发表于2023-05-08 16:14 被阅读0次

获取历史 K 线图

请求参数

period:时间周期,可选:5m, 15m, 1h, 4h, 1d
limit:最新的K线根数

响应格式

JSON

请求方式

POST

示例请求

'http://127.0.0.1:3002/api/candles/ETH?period=5m&limit=1'

示例响应

{
  "prices": [
    {
      "t": 1682566200,
      "o": 1903.01,
      "c": 1901.94,
      "h": 1904.285,
      "l": 1901.94
    }
  ],
  "period": "5m",
  "updatedAt": 1682566443
}

获取Token最新的价格

请求参数

period:时间周期,可选:5m, 15m, 1h, 4h, 1d
limit:最新的K线根数

响应格式

JSON

请求方式

POST

示例请求

http://127.0.0.1:3002/api/prices?token=ETH

示例响应

{
  "token": "BTC",
  "price": "5446636125000000000000000000000",
  "updateAt": 1682561762
}

相关文章

网友评论

      本文标题:Chainlink接口

      本文链接:https://www.haomeiwen.com/subject/hlgpjdtx.html