api referencev1apr 2026one endpoint

launch tokens from code.

A single endpoint. Bearer auth. Multipart body. Returns a mint address and a Printr URL. Everything else is the same LP engine.

§ 01

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

§ 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_here

Keep your API key secret. Revoke compromised keys from your dashboard immediately.

§ 03

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.

POST

/api/v1/launch

content-type: multipart/form-data

required fields

name

token name

symbol

token ticker

description

token description for Printr

image

token image file (png, jpg, gif; max 500 KB)

optional fields

initial_buy

SOL to buy at creation (default: 0)

twitter

twitter / X link

telegram

telegram link

website

project 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.

§ 04

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

end of reference

ship a launchpad, a bot, a batch script.