Skip to main content
GET
/
token
/
{network}
/
{address}
/
metadata
Get Token metadata
curl --request GET \
  --url https://solana-gateway.moralis.io/token/{network}/{address}/metadata \
  --header 'X-Api-Key: <api-key>'
{
  "mint": "<string>",
  "standard": "<string>",
  "name": "<string>",
  "symbol": "<string>",
  "logo": "<string>",
  "decimals": "<string>",
  "tokenStandard": 123,
  "score": 123,
  "totalSupply": "<string>",
  "totalSupplyFormatted": "<string>",
  "fullyDilutedValue": "<string>",
  "marketCap": "<string>",
  "metaplex": {
    "metadataUri": "<string>",
    "masterEdition": true,
    "isMutable": true,
    "primarySaleHappened": 123,
    "sellerFeeBasisPoints": 123,
    "updateAuthority": "<string>"
  },
  "links": {},
  "description": "<string>",
  "isVerifiedContract": true,
  "possibleSpam": true
}
Endpoint cost: CUs. Learn more about compute units.

Authorizations

X-Api-Key
string
header
required

Path Parameters

network
enum<string>
required

The network to query

Available options:
mainnet,
devnet
address
string
required

The address to query

Example:

"So11111111111111111111111111111111111111112"

Response