Query tokens, NFTs, and metadata
Retrieve detailed information about any token
GET /v1/tokens/{mint}
Response:
{
"mint": "So11...1111",
"name": "Wrapped SOL",
"symbol": "SOL",
"decimals": 9,
"supply": "1000000000"
}Access NFT metadata and ownership information
GET /v1/nfts/{mint}
Response:
{
"mint": "ABC...xyz",
"name": "Cool NFT #123",
"collection": "Cool Collection",
"owner": "Dxyz...123",
"image_uri": "https://..."
}Get all tokens owned by an address
GET /v1/addresses/{address}/tokens
Response:
{
"tokens": [
{
"mint": "So11...1111",
"balance": "100000000000",
"decimals": 9
}
]
}