coins

Updates information about a specific coin by its mint address

post/coins/{mint}

Path parameters

mintstring required
Example:bearR26zyyB3fNQm5wWv1ZfN8MPQDUMwaAuoG79b1Yj

The mint address of the coin

Query parameters

user_idstring required
Example:7eP5n

The user ID making the update (must be the coin owner)

Request body

descriptionstring

The description of the coin (max 2500 characters)

banner_image_urlstring uri

URL for the coin's banner image

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

{
  "description": "Updated description for the bear token",
  "banner_image_url": "https://example.com/banner.png",
  "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 updated

successboolean

Indicates if the update was successful

Example response

{
  "success": true
}

Changes