Data API

GET /v1/tokens/{mint}/price

Lightweight current price, market cap and 24h volume.

Endpoint

GET  https://solindex.infinityblocks.io/v1/tokens/{mint}/price

Authentication

Send your key in the x-api-key header (or ?api-key=). See Authentication.

Path parameters

ParamDescription
mintBase-58 token mint address.

Request

curl -s "https://solindex.infinityblocks.io/v1/tokens/<MINT>/price" \
  -H "x-api-key: <API_KEY>"
const r = await fetch("https://solindex.infinityblocks.io/v1/tokens/<MINT>/price", {
  headers: { "x-api-key": "<API_KEY>" },
});
const { data } = await r.json();

Response

{ "data": {
  "mint": "<MINT>", "symbol": null, "name": null,
  "priceUsd": 0.00000247, "marketCapUsd": 0, "volume24hUsd": 105.07,
  "lastTradeAt": "2026-05-30 21:20:20", "poolAddress": "…" } }

Try it

Run GET /v1/tokens/{mint}/pricelive · GET

Your key is stored only in this browser (localStorage).