Create Token
Other Platforms
Bags, Bonk/USD1, BNB / Nadfun / Clanker — create_token fields and auto_sell.
All examples use POST {region}/submit with "type": "create_token" and the right mode.
Bags (mode: bags)
| Field | Type | Description |
|---|---|---|
bags_creator_share | number | Creator share in basis points (10000 = 100%) |
bags_fee_claimers | array | { "username", "bps", "provider"? } — fee claimers; creator + claimers must sum to 10000 bps |
bags_config_type | string | Optional preset UUID string (see app for known ids) |
telegram | string | Optional |
Bundle / sniper / auto_sell follow the same patterns as pump where the server supports them.
Example
{
"type": "create_token",
"session_id": "<jwt>",
"api_key": "<encrypted>",
"mode": "bags",
"name": "My Bags Token",
"ticker": "BAGS",
"buy_amount": 5,
"bags_creator_share": 2000,
"bags_fee_claimers": [
{ "username": "somehandle", "bps": 8000, "provider": "twitter" }
],
"image_url": "https://example.com/token-image.png"
}Bonk / USD1 (mode: bonk or mode: usd1)
| Field | Type | Default | Description |
|---|---|---|---|
bonkers_mode | boolean | false | letsbonk.fun-style config when applicable |
Supports bundle / bundle_wallets, sniper_wallets, and auto_sell where enabled server-side.
BNB / Nadfun / Clanker
Use mode": "bnb", "nadfun", or "clanker". Put your EVM encrypted key in api_key (see How to get an API key).
| Field | Type | Description |
|---|---|---|
gwei | number | Gas price hint (default 5 when omitted) |
bnb_currency | string | e.g. bnb or usd1 for Four.Meme-style BNB deploys |
BNB + USD1 base example
{
"type": "create_token",
"session_id": "<jwt>",
"api_key": "<encrypted_evm_key>",
"mode": "bnb",
"name": "My Token",
"ticker": "MTK",
"buy_amount": 0.1,
"gwei": 5,
"bnb_currency": "usd1"
}auto_sell
When auto_sell is true, the server includes auto-sell for modes it supports (commonly pump, bonk, usd1, bags). Use auto_sell_wallets for structured multi-wallet auto-sell where implemented.