developers
antivamp API
launch anti-vamp tokens programmatically. every token launched through the API gets automatic fee cycles: 50% LP, 30% $ANTIVAMP buyback, 20% burn. no exceptions.
overview
the antivamp API lets you create tokens on pump.fun where creator fees are locked and auto-split into LP, buyback, and burn. build launchpads, bots, or tools that guarantee holders won't get vamped.
one endpoint. one API key. every token gets a locked creator wallet and automatic cycles every 15 minutes (LP + buyback + burn).
base URL: https://antivamp.app/api/v1
authentication
generate an API key from your dashboard. keys start with pk_ and are shown once at creation.
Authorization: Bearer pk_your_api_key_herekeep your API key secret. revoke compromised keys from your dashboard immediately.
launch via api
create a token on pump.fun in one API call. the token is created on the bonding curve, a locked creator wallet is generated, and LP cycles start running automatically. no one can vamp the fees.
/api/v1/launch
content-type: multipart/form-data
required fields
nametoken name
symboltoken ticker
descriptiontoken description for pump.fun
imagetoken image file (png, jpg, gif)
optional fields
initial_buySOL to buy at creation (default: 0)
twittertwitter/X link
telegramtelegram link
websiteproject website
example request
curl -X POST https://antivamp.app/api/v1/launch \
-H "Authorization: Bearer pk_your_api_key" \
-F "name=My Token" \
-F "symbol=TOKEN" \
-F "description=anti-vamp token. 100% of fees go to LP." \
-F "image=@token-logo.png" \
-F "initial_buy=0.1"response
{
"success": true,
"token_id": "uuid",
"mint": "TokenMintAddress...",
"tx": "transaction_signature",
"image_url": "https://...",
"pump_fun": "https://pump.fun/coin/TokenMintAddress..."
}your wallet needs ~1.1 SOL (1 SOL deploy fee + 0.075 SOL for creation + gas + initial buy). creator fees are auto-collected every 15 minutes and split into LP (50%), $ANTIVAMP buyback (30%), and token burn (20%) after pool migration.
limits
deploy fee
1 SOL per token
api keys per account
5
cycle interval
15 minutes
min balance to launch
~1.1 SOL + initial buy
min vault to claim
0.01 SOL
fee split
50% LP / 30% buyback / 20% burn