HTTP API

IGNIX provides a read-only HTTP API with no authentication required. It is used to retrieve offchain display data and aggregated data, including images, descriptions, social links, trading volume, and candlestick data.

Base URL https://api-dev.3.meme

All responses follow the same format:

{ "code": 200, "message": "success", "data": {} }

Token List

GET /v1/launches?limit=50&page=1

Returns an array in data.launches.

Single Token

GET /v1/launches/{token}

Main fields:

FieldTypeNotes
tokenAddressstringtoken address
name · symbolstringname and symbol
image · descriptionstring | nulldisplay data, not on chain
website · twitter · telegramstring | nullsocial links
creatorstringcreator
quotestringquote currency; zero address means native OKB
graduationstringthreshold, in the quote's smallest unit
collectedstringraised so far, same unit
progressnumber0–100
graduatedboolwhether it has graduated
lastPricestringlatest fill price
vol · tradeCount · holdersstring | numbervolume, fills, holders
dividendBpsnumberdividend share
dividendTrackerstringdividend ledger address
templateIdnumbervault template
Note

Amount-related fields such as graduation, collected, vol, and lastPrice are returned as strings in smallest units to avoid JSON number precision loss. Parse them as big integers.

Candles

GET /v1/launches/{token}/candles?interval=3600

interval is specified in seconds. Data is returned in ascending time order.

Caution

For any fund- or trade-related decision, the onchain contract state is the source of truth.

HTTP API data comes from the indexer and may lag behind the chain tip by a few seconds. For trading, quoting, or fund-related checks, read directly from the contracts.