Skip to main content
POST
/
create
/
mint-info
Submit mint creation
curl --request POST \
  --url https://launch-mint-v1.raydium.io/create/mint-info \
  --header 'Content-Type: application/json' \
  --data '
{
  "mint": "<string>",
  "name": "My Memecoin",
  "symbol": "MEME",
  "wallet": "<string>",
  "description": "<string>",
  "imageUri": "<string>",
  "website": "<string>",
  "twitter": "<string>",
  "telegram": "<string>",
  "platformId": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.raydium.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
mint
string
required

Mint pubkey (base58) created on-chain.

name
string
required

Display name shown in the LaunchLab UI.

Example:

"My Memecoin"

symbol
string
required

Ticker symbol.

Example:

"MEME"

wallet
string
required

Creator wallet (base58) — must match the on-chain creator.

description
string

Long-form description.

imageUri
string

HTTPS URL or IPFS URI for the token icon.

website
string
twitter
string
telegram
string
platformId
string

Platform pubkey that hosts this launch.

Response

200

Accepted