F4FinData4AI

Crypto

GET
/crypto/prices

Authorization

apiKeyAuth
X-API-Key<token>

In: header

Query Parameters

symbol*string

交易对,如 BTC-USD

start_date?string
Formatdate
end_date?string
Formatdate
interval?string
Default"1d"

Value in

  • "1m"
  • "5m"
  • "15m"
  • "1h"
  • "1d"
limit?integer
Range1 <= value <= 200
Default50
cursor?string

上一页返回的 next_cursor

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/crypto/prices?symbol=string"
{  "items": [    {      "date": "2026-08-03",      "open": 71204.5,      "high": 72890,      "low": 70880.2,      "close": 72410.8,      "volume": 28410    },    {      "date": "2026-08-04",      "open": 72410.8,      "high": 73120.4,      "low": 71990.1,      "close": 72015.3,      "volume": 24190    }  ],  "next_cursor": null}