get https://api.jup.ag/tokens/v1/
Get token information by token mint address
Parameters
address (string)
: Supports an address of a token- Example values:
JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN
So11111111111111111111111111111111111111112
mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So
- Example values:
We only support filtering for 1 token at a time right now.
Typings of response data
Field Attribute | Type | Description |
---|---|---|
address | string | Address of the token |
name | string | Name of the token |
symbol | string | Symbol of the token |
decimals | number | Number of decimal places the token amount complies to |
tags | string[] | Tags that are attached to the token |
daily_volume | number | Daily traded volume of the token |
created_at | string | Timestamp of the creation date for this token record in the DB |
freeze_authority | string | null | Freeze authority address of the token |
mint_authority | string | null | Mint authority address of the token |
permanent_delegate | string | null | Permanent delegate address of the token |
minted_at | string | Timestamp of the day this token is minted |
extensions | Map (Dictionary) | Partner extension details |
Example Response
{
"address": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"name": "Jupiter",
"symbol": "JUP",
"decimals": 6,
"logoURI": "https://static.jup.ag/jup/icon.png",
"tags": [
"strict"
],
"daily_volume": 7559150.946059356,
"created_at": "2024-04-26T10:43:13.779540Z",
"freeze_authority": null,
"mint_authority": null,
"permanent_delegate": null,
"minted_at": "2024-01-25T08:54:23Z",
"extensions": {
"coingeckoId": "jupiter-exchange-solana"
}
}