v1
latestOpenAPI 3.0.32026-07-2639188178.2 KBfungibles
Get a chart for a fungible asset
This endpoint returns the chart for the fungible asset for a selected period
get/v1/fungibles/{fungible_id}/charts/{chart_period}
Path parameters
fungible_idstring required
Unique fungible ID
chart_period'hour' | 'day' | 'week' | 'month' | '3months' | '6months' | 'year' | '5years' | 'max' required
Chart period. Determines both the time window covered and the spacing between chart points (points). Each period samples the window at a fixed interval, so the number of points is roughly constant (~290–460) regardless of period:
| Period | Point interval | Time window |
|---|---|---|
| hour | 10 seconds | last 1 hour |
| day | 5 minutes | last 24 hours |
| week | 30 minutes | last 7 days |
| month | 2 hours | last 30 days |
| 3months | 6 hours | last 90 days |
| 6months | 12 hours | last 180 days |
| year | 1 day | last 365 days |
| 5years | 4 days | last 5 years |
| max | varies | full available history |
Point counts are approximate, and begin_at / end_at are aligned to the interval. For max, the interval is derived from the amount of available history (targeting ~400 points), so it varies; for wallet and wallet-set charts the spacing is at least 1 day.
Query parameters
currency'eth' | 'btc' | 'usd' | 'eur' | 'krw' | 'rub' | 'gbp' | 'aud' | 'cad' | 'inr' | 'jpy' | 'nzd' | 'try' | 'zar' | 'cny' | 'chf'
Denominated currency value of returned prices
Response
Resource for the requested fungible chart
Example response
{
"links": {
"self": "https://api.zerion.io/v1/fungibles/fda0820a-9cff-40f5-997b-a76b9f9d60e7/charts/day"
},
"data": {
"type": "fungible_charts",
"id": "fda0820a-9cff-40f5-997b-a76b9f9d60e7-week",
"attributes": {
"begin_at": "2023-01-18T11:00:00Z",
"end_at": "2023-01-25T10:30:00Z",
"stats": {
"first": 1145.00999,
"min": 1133.034,
"avg": 1689.1110093,
"max": 2345.601,
"last": 1515.34
},
"points": [
[
1674039600,
1145.00999
]
]
}
}
}