Skip to main content
GET
/
v2
/
tokens
/
total-supply
Get total supply for a token
curl --request GET \
  --url https://api.range.org/v2/tokens/total-supply \
  --header 'Authorization: Bearer <token>'
{
  "token": "<string>",
  "network": "<string>",
  "total_supply": 123,
  "total_supply_raw": "<string>",
  "symbol": "<string>",
  "name": "<string>",
  "decimals": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Query Parameters

network
string
required

Network name (e.g. eth, solana)

token
string
required

Token contract address (EVM) or mint address (Solana)

Response

200 - application/json
token
string
required

Token name

network
string
required

Network name

total_supply
number
required

Total supply with decimals applied

total_supply_raw
string
required

Raw total supply as integer string

symbol
string

Token ticker symbol

name
string

Token name

decimals
number

Number of decimal places

Last modified on May 15, 2026