Skip to main content
GET
/
v2
/
rates
/
chart
cURL
curl --request GET \
  --url https://tonapi.io/v2/rates/chart
{
  "points": [
    [
      1668436763,
      97.21323234
    ]
  ]
}

Query Parameters

token
string<address>
required

accept jetton master address

currency
string
Example:

"usd"

start_date
integer<int64>
Required range: x <= 2114380800
Example:

1668436763

end_date
integer<int64>
Required range: x <= 2114380800
Example:

1668436763

points_count
integer<int>
default:200
Required range: 0 <= x <= 200

Response

token chart

points
number[][]
required

Each inner array is a pair [timestamp, price]: • index 0 — Unix timestamp (int64)
• index 1 — token price (decimal) in the requested currency.

Required array length: 2 elements
Example:
[[1668436763, 97.21323234]]