Skip to main content
POST
/
api
/
v1
/
developer
/
prices
/
stats
Token Stats
curl --request POST \
  --url https://api.allium.so/api/v1/developer/prices/stats \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '[
  {
    "chain": "string",
    "token_address": "string"
  }
]'
{
  "items": [
    {
      "mint": "<string>",
      "chain": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "latest_price": 123,
      "low_24h": 123,
      "high_24h": 123,
      "low_1h": 123,
      "high_1h": 123,
      "percent_change_24h": 123,
      "percent_change_1h": 123,
      "decimals": 123
    }
  ],
  "cursor": "<string>"
}
This endpoint returns token price statistics based on on-chain activity. These stats are calculated from our on-chain DEX-based prices.

Available Stats

StatTime Window
High/Low24h, 1h
% Price Change24h, 1h

Important Notes

  • Price high/low and price changes are calculated from filtered prices to avoid outlying trades producing inaccurate values

Pagination

This endpoint returns prices for up to 200 tokens in a single request.

Supported Chains

Authorizations

X-API-KEY
string
header
required

Body

application/json · PayloadTokenAddress · object[]

List of token addresses to get stats for.

token_address
string
required
chain
string
required

Response

Successful Response

items
TokenStatsWithHiddenFields · object[]
required
cursor
string | null
I