Create Coin

🚧 Coming Soon - This endpoint is not yet live.

🔑 Authentication required. See API Key for setup and rate limits.

POST /services/v2/create-coin-tx

Creates a new token on the Solana blockchain and returns a signed transaction to broadcast.

POST https://api.anoncoin.it/services/v2/create-coin-tx

Request Headers

Header
Value
Description

x-api-key

Your API key

Required. Anoncoin API key


Request Body (form-data)

Field
Type
Required
Description

tickerName

text

Name of the token (e.g., Thanos)

tickerSymbol

text

Symbol / ticker (e.g., THANOS)

description

text

Description / lore for the coin

tickerImage

file

Image file for the coin logo

twitterLink

text

X (Twitter) link for the coin

telegramLink

text

Telegram link for the coin

validateOnly

text

Pass "true" to validate without creating. Default: "false"

feePayerWalletAddress

text

Whitelisted users only. Wallet address to claim fee externally

externalLink

text

Whitelisted users only. External link to store

lockTicker

text

Whitelisted users only. Pass "true" to lock the ticker for 1 hour


Examples

1. Validate Only (Success)

Pass validateOnly="true" to check if the token can be created without actually creating it.

Request:

Response:


2. Create a Token (Success)

Creates the token and returns a signed transaction to broadcast to Solana.

Request:

Response:

⚠️ Important: You must broadcast the signedTransaction to the Solana network before the blockhash expires (~59 seconds).

Response Fields

  • status : true on success.

  • message : Status message.

  • requestId : Unique request identifier.

  • data :

    • mintAddress : The Solana token mint address for the newly created token.

    • meteoraConfigKey : The Meteora config key used during token creation.

    • signedTransaction : The signed transaction in base58 encoded string format, ready to be broadcast.

    • blockhash : The blockhash used for the transaction.

    • lastValidBlockHeight : The block height until which the transaction remains valid.

    • blockhashExpiresInSeconds : Time in seconds until the blockhash expires.


3. Failure (Duplicate Ticker)

If the ticker symbol is already taken, the API returns an error.

Request:

Response:

Last updated

Was this helpful?