developers
antivamp API
launch anti-vamp tokens programmatically. every token launched through the API gets automatic LP. 100% of creator fees routed to liquidity, no exceptions.
overview
the antivamp API lets you create tokens on pump.fun where 100% of creator fees are locked into LP. 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 LP cycles every 15 minutes.
base URL: https://antivamp.fun/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.fun/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 and routed to LP every 15 minutes after pool migration.
limits
deploy fee
1 SOL per token
api keys per account
5
LP cycle interval
15 minutes
min balance to launch
~1.1 SOL + initial buy
min vault to claim
0.01 SOL
platform cut on LP
0%