overview
The liqr API is a thin wrapper over Printr. Every call creates one Solana token on Printr’s bonding curve, signed by a fresh per-token creator keypair that liqr persists (encrypted) server-side.
From that point on, a cron claims the token’s Printr creator fees every ~10 minutes and deposits them as permanent liquidity in the token’s own Meteora DAMM v2 pool. No platform fee, no shared treasury.
base url
https://liqr.money/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
Create a token on Printr in one API call. A fresh per-token creator wallet is generated, funded from your account wallet, signs the Printr tx, and is persisted (encrypted) so the LP cron can claim + deposit on its behalf going forward.
/api/v1/launch
content-type: multipart/form-data
required fields
nametoken name
symboltoken ticker
descriptiontoken description for Printr
imagetoken image file (png, jpg, gif; max 500 KB)
optional fields
initial_buySOL to buy at creation (default: 0)
twittertwitter / X link
telegramtelegram link
websiteproject website
example request
curl -X POST https://liqr.money/api/v1/launch \
-H "Authorization: Bearer pk_your_api_key" \
-F "name=My Token" \
-F "symbol=TOKEN" \
-F "description=minimalism wins." \
-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 account wallet needs ~0.1 SOL for Printr + gas, plus whatever you set as initial_buy. liqr takes 0% — 100% of creator fees route to LP.
limits
platform fee
none
printr deploy
~0.06 sol
image size
max 500 KB
api keys per account
5
min wallet balance
~0.1 sol + initial_buy
chain
solana mainnet