← Back to Docs

Digital Assets API

Query tokens, NFTs, and metadata

Get Token Metadata

Retrieve detailed information about any token

GET /v1/tokens/{mint}

Response:
{
  "mint": "So11...1111",
  "name": "Wrapped SOL",
  "symbol": "SOL",
  "decimals": 9,
  "supply": "1000000000"
}

Get NFT Details

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://..."
}

Token Holdings

Get all tokens owned by an address

GET /v1/addresses/{address}/tokens

Response:
{
  "tokens": [
    {
      "mint": "So11...1111",
      "balance": "100000000000",
      "decimals": 9
    }
  ]
}