Skip to main content
GET
/
api
/
v1
/
history
/
range
Price history over a time range
curl --request GET \
  --url https://api.vatic.trading/api/v1/history/range
{
  "now": "2025-04-07T12:00:00.000Z",
  "asset": "btc",
  "marketType": "5min",
  "provider": "chainlink",
  "requested": {
    "start": 1744012800,
    "end": 1744027500,
    "start_iso": "2025-04-07T00:00:00.000Z",
    "end_iso": "2025-04-07T04:05:00.000Z"
  },
  "count": 49,
  "history": [
    {
      "timestamp_start": 1744012800,
      "price": 82100,
      "source": "chainlink"
    }
  ]
}

Query Parameters

asset
enum<string>
required
Available options:
btc,
eth,
sol,
xrp,
hype,
doge,
bnb
type
enum<string>
required
Available options:
5min,
15min,
1hour,
4hour,
daily
start
integer
required

Range start as Unix timestamp.

end
integer
required

Range end as Unix timestamp.

Response

Array of price datapoints