Skip to main content
GET
/
v1
/
tokens
/
krc20
/
market-data
KRC20 token market data
curl --request GET \
  --url https://api.kas.fyi/v1/tokens/krc20/market-data \
  --header 'x-api-key: <api-key>'
{
  "results": [
    {
      "ticker": "<string>",
      "price": {
        "kas": 123,
        "usd": 123
      },
      "volume24h": {
        "usd": 123
      },
      "marketCap": {
        "usd": 123
      },
      "rank": 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

Query Parameters

tickers
string
required

Comma-separated list of KRC20 token tickers. Max length 500

Example:

"NACHO,KANGO,PEPE"

Response

default - application/json
results
object[]
required
⌘I