Skip to main content
GET
/
v1
/
tokens
/
krc20
/
{ticker}
/
chart
KRC20 token charts data
curl --request GET \
  --url https://api.kas.fyi/v1/tokens/krc20/{ticker}/chart \
  --header 'x-api-key: <api-key>'
{
  "candles": [
    {
      "timestamp": "<string>",
      "ticker": "<string>",
      "open": 123,
      "high": 123,
      "low": 123,
      "close": 123,
      "open_kas": 123,
      "high_kas": 123,
      "low_kas": 123,
      "close_kas": 123
    }
  ],
  "stats": [
    {
      "t": 123,
      "h": 123,
      "m": 123,
      "tf": 123
    }
  ]
}

Cost

This endpoint costs 0.01 RU (Request Units) per call.

Authorizations

x-api-key
string
header
required

API key required for authentication. Get your API key at https://developer.kas.fyi

Path Parameters

ticker
string
required

A Kaspa KRC20 ticker

Example:

"NACHO"

Query Parameters

type
enum<string>
required

Type of the charts data. "candles" for price history, "stats" for other stats like transfer/holders/minting counts

Available options:
candles,
stats
interval
enum<string>
required

Interval for the charts data

Available options:
1d,
7d,
1m,
1y

Response

default - application/json
candles
object[]
required
stats
object[]
required
⌘I