Token Metadata API
This endpoint is currently free to use with a 25 requests/second rate limit per IP
Retrieve metadata information for specified token mints.
Authorizations
Body
Request for token metadata information
mintsstring[] · max: 36RequiredExample:
Array of token mint addresses to retrieve metadata for
["EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm","EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"]
Responses
200
Success
application/json
400
Invalid input
application/json
401
Unauthorized
text/plain
403
Forbidden
text/plain
429
Too Many Requests
text/plain
500
Internal Server Error
text/plain
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