Alchemy · Schema

Token Metadata

ERC-20 token metadata including name, symbol, decimals, and logo.

Web3BlockchainRPCNFTIndexingAccount Abstraction

Properties

Name Type Description
name string Full token name.
symbol string Token ticker symbol.
decimals integer Number of decimal places for the token.
logo string URL of the token logo image.
View JSON Schema on GitHub

JSON Schema

alchemy-token-api-token-metadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alchemy/refs/heads/main/json-schema/alchemy-token-api-token-metadata-schema.json",
  "title": "Token Metadata",
  "description": "ERC-20 token metadata including name, symbol, decimals, and logo.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Full token name.",
      "example": "USD Coin"
    },
    "symbol": {
      "type": "string",
      "description": "Token ticker symbol.",
      "example": "USDC"
    },
    "decimals": {
      "type": "integer",
      "description": "Number of decimal places for the token.",
      "example": 6
    },
    "logo": {
      "type": "string",
      "format": "uri",
      "description": "URL of the token logo image.",
      "example": "https://static.alchemyapi.io/images/assets/3408.png"
    }
  }
}