Skip to main content

Overview

Creates an unsigned transaction for launching a new SPL token on Solana with custom metadata, optional vanity address ending, no fees, automatic inflation and claimability.

Request Parameters

string
required
The display name of the token (e.g., “Solana Token”)
string
required
The token symbol/ticker (e.g., “SOL”, “USDC”)
string
required
Base58 encoded public key of the account that will pay transaction fees and own the token
string
Optional description of the token for metadata
string
URL to the token’s image/logo for metadata
string
Website URL associated with the token
string
Twitter URL or handle for the token project
string
Optional vanity ending for the token address (max 3 characters, no 0, O, I, l)
string
Quote token for the bonding curve pool. Options: “SOL” (default) or “ZC” (native launchpad token). If not specified, defaults to “SOL”

Response

boolean
Indicates if the operation was successful
string
Base58 encoded unsigned transaction that needs to be signed by the payer
string
The public key of the token mint address
string
IPFS URL where the token metadata is stored
string
Instructions for the next step in the process

Success Response

Error Responses

Or:

Rate Limiting

This endpoint is subject to rate limiting:
  • 8 requests per IP per 2-minute window
  • Returns HTTP 429 when limit exceeded

Next Steps

After receiving the unsigned transaction:
  1. Deserialize the transaction using @solana/web3.js
  2. Sign the transaction with your wallet
  3. Submit the signed transaction to /confirm-launch
The baseMint and internal keypair are stored temporarily. You must call /confirm-launch within a reasonable time frame or the launch will need to be restarted.

Security Notes

  • The API generates the token keypair internally and does not expose the private key
  • Users only sign for transaction fees and account creation
  • Protocol maintains mint authority for the claims system
  • All metadata is uploaded to IPFS for permanent storage