Skip to main content
POST
/
api
/
solscan
/
tokens
/solscan/tokens
curl --request POST \
  --url https://api.anysite.io/api/solscan/tokens \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "timeout": 300
}
'
[
  {
    "address": "<string>",
    "@type": "SolscanToken",
    "name": "<string>",
    "symbol": "<string>",
    "image": "<string>",
    "decimals": 123,
    "total_supply": 123,
    "supply_raw": "<string>",
    "price": 123,
    "market_cap": 123,
    "holder_count": 123,
    "token_authority": "<string>",
    "freeze_authority": "<string>",
    "update_authority": "<string>",
    "creator": "<string>",
    "created_at": 123,
    "first_mint_at": 123,
    "created_tx": "<string>",
    "first_mint_tx": "<string>",
    "seller_fee_basis_points": 123,
    "is_mutable": true,
    "token_score": 123,
    "extensions": {
      "@type": "SolscanTokenExtensions",
      "website": "<string>",
      "twitter": "<string>",
      "telegram": "<string>",
      "discord": "<string>",
      "medium": "<string>",
      "description": "<string>",
      "coingecko_id": "<string>",
      "coinmarketcap_id": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Token mint address (base58)

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

address
string
required
@type
string
default:SolscanToken
name
string | null
symbol
string | null
image
string | null
decimals
integer | null
total_supply
number | null
supply_raw
string | null
price
number | null
market_cap
number | null
holder_count
integer | null
token_authority
string | null
freeze_authority
string | null
update_authority
string | null
creator
string | null
created_at
integer | null
first_mint_at
integer | null
created_tx
string | null
first_mint_tx
string | null
seller_fee_basis_points
integer | null
is_mutable
boolean | null
token_score
integer | null
extensions
object