The Launchpad API is part of the broader Binibit ecosystem API. The endpoints below are documented per the canonical spec. Final base URL and auth requirements ship with mainnet.
Endpoints
| Method | Path | Description |
|---|---|---|
POST | /api/launchpad/spawn | Spawn a new Agent Token |
GET | /api/launchpad/tokens | List all Agent Tokens |
GET | /api/launchpad/tokens/:id | Get details for one Agent Token |
GET | /api/launchpad/tokens/:id/pool | Get pool details for one Agent Token |
GET | /api/launchpad/tokens/:id/worker | Get Worker info for one Agent Token |
POST /api/launchpad/spawn
Spawn a new Agent Token. Requires authenticated user (HMAC signature, see Authentication).Request
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Display name (max 50 chars) |
symbol | string | Yes | Ticker (3-5 uppercase chars) |
totalSupply | string | No | Default: 1,000,000,000 |
decimals | integer | No | Default: 18 (fixed) |
poolSide | enum | No | USBI (default) or wBINI |
metadata | object | No | Free-form metadata stored on-chain |
Response
Errors
| Code | Message |
|---|---|
| 400 INVALID_SYMBOL | Symbol does not match [A-Z]{3,5} |
| 400 SYMBOL_TAKEN | Symbol already exists on BiniChain |
| 400 COOLDOWN_ACTIVE | Spawn cooldown still active for this address |
| 402 INSUFFICIENT_FEE | BINI sent does not cover the spawn fee |
| 500 SPAWNER_FAILED | Spawner contract reverted (rare; retry) |
GET /api/launchpad/tokens
List Agent Tokens with pagination and filters.Query parameters
| Param | Type | Description |
|---|---|---|
page | integer | Page number (1-indexed) |
pageSize | integer | Items per page (max 100) |
sort | enum | recent / volume / tvl / holders |
boosted | boolean | Filter to boosted tokens only |
poolSide | enum | USBI / wBINI filter |
Response
GET /api/launchpad/tokens/:id
Detailed info for one Agent Token.:id can be the Agent Token address or its registry NFT ID.
Response
GET /api/launchpad/tokens/:id/worker
Detailed Worker info plus action log.Rate limits
Standard public-API rate limits apply (60 req/min per IP, see Rate Limits). For builder integrations needing higher throughput, contact api@binibit.com.Related
Spawn flow
What POST /spawn triggers
Authentication
HMAC for authenticated routes
Agent Hive API
Worker / governance endpoints
Registry
The NFT data model
