Create Coin
POST/coins
Creates a new artist coin
Request
Query Parameters
The user ID to create a coin
- application/json
Body
required
The mint address of the coin
The coin symbol/ticker
Possible values: <= 18
The number of decimals for the coin (0-18)
The coin name
The URI for the coin's logo image
The URI for the coin's banner image
The description of the coin
Generic link URL for the coin
Generic link URL for the coin
Generic link URL for the coin
Generic link URL for the coin
Responses
- 201
- 400
- 401
- 500
Success - Coin created
- application/json
- Schema
- Example (from schema)
Schema
data
object
The mint address of the coin
The coin symbol/ticker
The user ID who created the coin
The number of decimals for the coin
The coin name
The URI for the coin's logo image
The URI for the coin's banner image
The description of the coin
Generic link URL for the coin
Generic link URL for the coin
Generic link URL for the coin
Generic link URL for the coin
The date and time when the coin was created
{
"data": {
"mint": "bearR26zyyB3fNQm5wWv1ZfN8MPQDUMwaAuoG79b1Yj",
"ticker": "BEAR",
"user_id": 1,
"decimals": 9,
"name": "BEAR",
"logo_uri": "https://example.com/logo.png",
"banner_image_url": "https://example.com/banner.png",
"description": "A majestic bear token for wildlife conservation",
"link_1": "https://x.com/bear_token",
"link_2": "https://instagram.com/bear_token",
"link_3": "https://tiktok.com/@bear_token",
"link_4": "https://bear-token.com",
"created_at": "2024-01-15T10:30:00Z"
}
}
Bad request - Invalid parameters
Unauthorized - User not authenticated
Server error