curl --request GET \
--url 'https://ca.raze.sh/api/sol/tokens/metadata/{tokenMint}?apiKey='{
"success": true,
"metadata": {
"tokenMint": "<string>",
"onChain": {
"name": "<string>",
"symbol": "<string>",
"uri": "<string>",
"source": "metaplex"
},
"offChain": {
"name": "<string>",
"symbol": "<string>",
"description": "<string>",
"image": "<string>",
"external_url": "<string>",
"attributes": [
{}
]
},
"metadataSource": "metaplex",
"timestamp": "2023-11-07T05:31:56Z"
}
}Resolves token metadata across multiple sources, in order: Metaplex (PDA from Token Metadata Program) → Token 2022 → internal Data API.
On-chain name, symbol, and uri are pulled from whichever source
responds first. If a uri is present, the off-chain JSON is fetched
(via IPFS gateway when applicable) and returned under offChain.
Result is cached per mint; a single retry-after-1s pass handles tokens that aren’t fully indexed yet.
curl --request GET \
--url 'https://ca.raze.sh/api/sol/tokens/metadata/{tokenMint}?apiKey='{
"success": true,
"metadata": {
"tokenMint": "<string>",
"onChain": {
"name": "<string>",
"symbol": "<string>",
"uri": "<string>",
"source": "metaplex"
},
"offChain": {
"name": "<string>",
"symbol": "<string>",
"description": "<string>",
"image": "<string>",
"external_url": "<string>",
"attributes": [
{}
]
},
"metadataSource": "metaplex",
"timestamp": "2023-11-07T05:31:56Z"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.raze.bot/llms.txt
Use this file to discover all available pages before exploring further.