Data API
GET /v1/tokens/{mint}/bonding-curve
LaunchLab bonding-curve progress and liquidity.
Endpoint
GET https://solindex.infinityblocks.io/v1/tokens/{mint}/bonding-curve
Authentication
Send your key in the x-api-key header (or ?api-key=). See Authentication.
Path parameters
| Param | Description |
|---|---|
mint | Base-58 token mint address. |
Request
curl -s "https://solindex.infinityblocks.io/v1/tokens/<MINT>/bonding-curve" \
-H "x-api-key: <API_KEY>"
const r = await fetch("https://solindex.infinityblocks.io/v1/tokens/<MINT>/bonding-curve", {
headers: { "x-api-key": "<API_KEY>" },
});
const { data } = await r.json();
Response
{ "data": {
"progressPct": 1.54, "realQuoteSol": 1.3129, "targetQuoteSol": 85,
"liquidityUsd": 217.65, "status": 0, "migrateType": 1 } }
status: 0 = funding, 1 = ended, 2 = graduated. migrateType: 0 = AMM, 1 = CpSwap. Returns 404 if no curve state exists for the mint.Try it
Run GET /v1/tokens/{mint}/bonding-curvelive · GET
Your key is stored only in this browser (localStorage).
—