Skip to main content
GET
/
{chainId}
/
tokens
/
{address}
Get token by contract address
curl --request GET \
  --url https://api.akka.finance/{chainId}/tokens/{address} \
  --header 'apikey: <api-key>'
{
  "symbol": "UBTC",
  "name": "Universal BTC",
  "decimals": 18,
  "address": "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb",
  "logoUri": null,
  "verified": true,
  "buyPriceUsd": 104500,
  "sellPriceUsd": 104480
}

Documentation Index

Fetch the complete documentation index at: https://akkafinance-4d5a30d3.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Use this endpoint to look up a specific token’s metadata when you already have its contract address. Returns the same data as the token list endpoint, but for a single token.

Authorizations

apikey
string
header
required

API key for authentication. Contact AKKA on Telegram to obtain your key.

Path Parameters

chainId
enum<integer>
required

Blockchain chain ID

Available options:
999
Example:

999

address
string
required

Token smart contract address (checksummed).

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb"

Response

Token information retrieved successfully

symbol
string
required

Token ticker symbol

Example:

"WHYPE"

name
string
required

Full token name

Example:

"Wrapped HYPE"

decimals
integer
required

Number of decimal places

Example:

18

address
string
required

Token contract address

Example:

"0x5555555555555555555555555555555555555555"

verified
boolean
required

Whether the token is verified by AKKA

Example:

true

logoUri
string | null

URL to the token logo image

Example:

null

buyPriceUsd
number | null

Current buy price in USD

Example:

25.42

sellPriceUsd
number | null

Current sell price in USD

Example:

25.38