j7tracker
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)

FieldTypeDescription
bags_creator_sharenumberCreator share in basis points (10000 = 100%)
bags_fee_claimersarray{ "username", "bps", "provider"? } — fee claimers; creator + claimers must sum to 10000 bps
bags_config_typestringOptional preset UUID string (see app for known ids)
telegramstringOptional

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)

FieldTypeDefaultDescription
bonkers_modebooleanfalseletsbonk.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).

FieldTypeDescription
gweinumberGas price hint (default 5 when omitted)
bnb_currencystringe.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.

On this page