0x03API

Launch by API

live

One request launches a token from a tweet, perfect for bots and automations. Send the tweet URL and a signing key; get back a live pump.fun mint. The endpoint is live now.

Endpoint
POST/v1/launch

Base URL blue-bird.fun. Live now. Send a request to launch.

Fees are always 0.01 SOL.

200 · Response
{
  "ok": true,
  "mint": "BiRd...pump",
  "name": "Blue Bird Free",
  "ticker": "BIRD",
  "signature": "5xTx…",
  "url": "https://pump.fun/BiRd...pump"
}
Parameters
FieldTypeRequiredDescription
tweet_urlstringyesLink to the X / Twitter post to turn into a token.
private_keystringyesSigning key for the wallet that pays for and launches the token.
dev_buynumberyesInitial dev buy in SOL. Must be greater than 0.01.
!
About the image

You don’t pass an image. We use the tweet’s own picture when it has one, and otherwise generate a matching one with AI automatically, so there’s nothing to configure.

curl -X POST https://blue-bird.fun/v1/launch \
  -H "Content-Type: application/json" \
  -d '{
    "tweet_url": "https://x.com/username/status/1234567890",
    "private_key": "YOUR_WALLET_PRIVATE_KEY",
    "dev_buy": 0.05
  }'

We don’t store your private key

Your private key is used once, in memory, to sign the launch transaction, then discarded. It is only ever accepted over TLS, and never logged, persisted, or shared.