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": {} }
GET /v1/launches?limit=50&page=1
Returns an array in data.launches.
GET /v1/launches/{token}
Main fields:
| Field | Type | Notes |
|---|---|---|
tokenAddress | string | token address |
name · symbol | string | name and symbol |
image · description | string | null | display data, not on chain |
website · twitter · telegram | string | null | social links |
creator | string | creator |
quote | string | quote currency; zero address means native OKB |
graduation | string | threshold, in the quote's smallest unit |
collected | string | raised so far, same unit |
progress | number | 0–100 |
graduated | bool | whether it has graduated |
lastPrice | string | latest fill price |
vol · tradeCount · holders | string | number | volume, fills, holders |
dividendBps | number | dividend share |
dividendTracker | string | dividend ledger address |
templateId | number | vault template |
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.
GET /v1/launches/{token}/candles?interval=3600
interval is specified in seconds. Data is returned in ascending time order.
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.