interface — api v1
build on
the discipline.
A single endpoint to deploy a vampr-locked token. Every launch inherits the 50 / 30 / 20 cron, the locked creator wallet, and the public ledger.
§ 01
overview
the vampr API lets you create tokens on Printr 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://vampr.money/api/v1
§ 02
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.
§ 03
launch via api
create a token on Printr 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 Printr
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://vampr.money/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",
"telecoin_id": "printr_telecoin_id",
"mint": "TokenMintAddress...",
"tx": "transaction_signature",
"printr_url": "https://app.printr.money/token/telecoin_id"
}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%), $VAMPR buyback (30%), and token burn (20%) after pool migration.
§ 04
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
build on a launch that can’t be vamped.
Every API deploy inherits the full protocol. No flags. No opt-in. Just a key and a POST.