Skip to main content
GET
/
v1
/
query
/
assets
Get all assets
curl --request GET \
  --url https://api.example.com/v1/query/assets \
  --header 'X-Pubkey: <x-pubkey>' \
  --header 'X-Pubkey, X-Timestamp, X-Signature: <api-key>' \
  --header 'X-Signature: <x-signature>' \
  --header 'X-Timestamp: <x-timestamp>'
[
  {
    "address": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "decimals": 123,
    "image_url": "<string>",
    "approx_price": 123,
    "category": "<string>",
    "chain_id": 123
  }
]

Authorizations

X-Pubkey, X-Timestamp, X-Signature
string
header
required

Headers

X-Pubkey
string
required

Integrator's ECDSA public key (P-256 curve, compressed SEC1 format). Example: 0x038fedef7c12f93bbf342ad8943b7a825a3b41f61c9dc118b2c718efebabbf62fd

X-Timestamp
string
required

Unix timestamp in seconds (UTC). Must be within tolerance window (1 minute) to prevent replay attacks. Example: 1760375826

X-Signature
string
required

ECDSA signature (DER-encoded, hex with 0x prefix). Signs the message: {timestamp}{METHOD}{path_and_query}{json_body}. Example: 0x3045022100...

Response

Assets retrieved successfully

address
string
required

Token contract address

name
string
required

Token name

symbol
string
required

Token symbol

decimals
integer<int32>
required

Token decimals

image_url
string
required

Token image URL

approx_price
number<double>
required

Approximate price in USD

category
string
required

Token category (e.g., "lst", "eth", "bitcoin")

chain_id
integer<int32>
required

Chain ID