Data API

GET /v1/tokens/{mint}

Full token summary — metadata, price, market cap, 24h volume, holders, and bonding curve in one call.

Endpoint

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

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

Response

{ "data": {
  "mint": "<MINT>", "symbol": "…", "name": "…",
  "priceUsd": 0.00000247, "marketCapUsd": 2470, "volume24hUsd": 105.07,
  "lastTradeAt": "2026-05-30 21:20:20", "poolAddress": "…",
  "decimals": 6, "totalSupply": 1000000000, "status": "bonding",
  "createdAt": 1780165369000, "graduatedAt": null,
  "creator": "…", "launchpad": "launchlab", "holders": 18,
  "bondingCurve": { "progressPct": 1.54, "realQuoteSol": 1.31,
    "targetQuoteSol": 85, "liquidityUsd": 217.6, "status": 0, "migrateType": 1 } } }

Try it

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

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