coins

Creates a new artist coin

post/coins

Query parameters

user_idstring required
Example:7eP5n

The user ID to create a coin

Request body

mintstring required

The mint address of the coin

tickerstring required

The coin symbol/ticker

decimalsinteger required

The number of decimals for the coin (0-18)

namestring required

The coin name

logo_uristring

The URI for the coin's logo image

banner_image_urlstring uri

The URI for the coin's banner image

descriptionstring

The description of the coin

link_1string uri

Generic link URL for the coin

link_2string uri

Generic link URL for the coin

link_3string uri

Generic link URL for the coin

link_4string uri

Generic link URL for the coin

Example request

{
  "mint": "bearR26zyyB3fNQm5wWv1ZfN8MPQDUMwaAuoG79b1Yj",
  "ticker": "BEAR",
  "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"
}

Response

Success - Coin created

Example response

{
  "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"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.