Data API

GET /v1/stats

Platform-wide totals and 24-hour activity.

Endpoint

GET  https://solindex.infinityblocks.io/v1/stats

Authentication

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

Query parameters

ParamTypeDefaultAllowed / range
prefixstringOnly mints starting with this (base58, 1–16)
suffixstringOnly mints ending with this (base58, 1–16)

Request

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

Response

{ "data": {
  "totalTrades": 7800, "totalLaunches": 146,
  "trades24h": 5621, "volume24hUsd": 372125.07,
  "uniqueTraders24h": 1477, "activeTokens24h": 333,
  "solUsd": 82.88, "scope": null } }
Optional prefix / suffix scope every figure to tokens whose mint address starts / ends with that base58 string — e.g. ?prefix=dgn for one launchpad's vanity mints. Omit both for all Raydium LaunchLab tokens; they can be combined. The scope field echoes the active filter (null when unfiltered).

Try it

Run GET /v1/statslive · GET

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