GET
/
v1
/
token
/
{chain}
/
{tokenAddress}
/
metadata
Token - Metadata
curl --request GET \
  --url https://api-dex.chainstream.io/v1/token/{chain}/{tokenAddress}/metadata \
  --header 'Authorization: Bearer <token>'
{
  "chain": "solana",
  "decimals": 9,
  "name": "USD Coin",
  "symbol": "USDC",
  "metadataAddress": "metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s",
  "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "tokenCreators": {
    "address": "5e2qRc1DNEXmyxP8qwPwJhRWjef7usLyi7v5xjqLr5G7",
    "share": 100,
    "isVerified": true
  },
  "imageUrl": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png",
  "uri": "https://...",
  "extra": {
    "collectionAddress": "ABCDE",
    "editionNonce": 1,
    "fungible": true,
    "isMutable": true,
    "key": "Mint",
    "isNative": false,
    "primarySaleHappened": false,
    "launchFromProgramAddress": "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",
    "launchFromProtocolFamily": "pumpfun",
    "programAddress": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
    "migratedToProgramAddress": "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
    "migratedToProtocolFamily": "Raydium",
    "migratedToPoolAddress": "7AvUMqLBou5EAXzyhnizWmPU13u2VguJoBYdcX4bhJtQ",
    "migratedAt": 1714857600,
    "sellerFeeBasisPoints": 100,
    "tokenStandard": "Fungible",
    "mintAuthority": "B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV",
    "freezeAuthority": "B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV",
    "updateAuthority": "B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV",
    "isVerifiedCollection": true,
    "isWrapped": false
  },
  "socialMedias": {
    "twitter": "@circle",
    "telegram": "https://t.me/circle",
    "website": "https://www.circle.com",
    "tiktok": "@circle",
    "discord": "https://discord.gg/circle",
    "facebook": "https://facebook.com/circle",
    "github": "https://github.com/circle",
    "instagram": "@circle",
    "linkedin": "https://linkedin.com/company/circle",
    "medium": "https://medium.com/@circle",
    "reddit": "https://reddit.com/r/circle",
    "youtube": "https://youtube.com/@circle",
    "bitbucket": "https://bitbucket.org/circle"
  },
  "tokenCreatedAt": "2024-03-14T12:00:00Z",
  "description": "USDC is a stablecoin pegged to the US dollar"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

A chain name listed in supported networks

Available options:
sol,
base,
bsc,
polygon,
arbitrum,
optimism,
avalanche,
ethereum,
zksync,
sui
tokenAddress
string
required

An address of a token

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Response

200 - application/json

The response is of type object.