Token Metadata API

We're seeking feedback to improve this API! Please share your thoughts in our Discord #svs-api channel let us know how we can improve or report any bugs you encounter!

Get Token Metadata

post

Retrieve metadata information for specified token mints.

Authorizations
Body

Request for token metadata information

mintsstring[] · max: 36Required

Array of token mint addresses to retrieve metadata for

Example: ["EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm","EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"]
Responses
200
Success
application/json
post
POST /metadata HTTP/1.1
Host: beta-api.solanavibestation.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 58

{
  "mints": [
    "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm"
  ]
}
{
  "metas": [
    {
      "mint": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
      "name": "dogwifhat",
      "symbol": "$WIF",
      "uri": "https://bafkreihwqhounu3cdwgvk2gc2dqcinpntlccbo3xcy4xuerd24yndldl5q.ipfs.nftstorage.link",
      "fungible": true,
      "decimals": 6,
      "primary_creator": "11111111111111111111111111111111",
      "freeze_authority": null,
      "off_chain_metadata": {
        "description": "Popular meme Dogwifhat vibes wif frens onchain @Dogwifcoin on X",
        "image": "https://bafkreibk3covs5ltyqxa272uodhculbr6kea6betidfwy3ajsav2vjzyum.ipfs.nftstorage.link",
        "name": "dogwifhat",
        "symbol": "$WIF"
      }
    }
  ]
}

Last updated