Skip to main content
GET
/
token
/
{mint_address}
token information
curl --request GET \
  --url https://lite-api.jup.ag/tokens/v1/token/{mint_address}
{
  "address": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "daily_volume": 123,
  "decimals": 123,
  "extensions": "<any>",
  "freeze_authority": "<string>",
  "logoURI": "<string>",
  "mint_authority": "<string>",
  "minted_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "permanent_delegate": "<string>",
  "symbol": "<string>",
  "tags": [
    "<string>"
  ]
}

Path Parameters

mint_address
string
required

The token's mint address

Response

200 - application/json

Returns metadata about a particular token

address
string
required
created_at
string<date-time>
required
decimals
integer
required
extensions
any
required
name
string
required
symbol
string
required
tags
(string | null)[]
required
daily_volume
integer | null
freeze_authority
string | null
logoURI
string | null
mint_authority
string | null
minted_at
string<date-time> | null
permanent_delegate
string | null
I