v18

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-013469188.5 KB
Utilities

Get USD unit prices for token symbols

Returns USD unit prices keyed by uppercased token symbol. Used to convert a USD amount into estimated destination-token units for tokens not present in the portfolio (e.g. a SOL or ETH destination the user does not hold).

get/prices

Query parameters

symbolsstring

Comma-separated token symbols to price (e.g. "SOL,ETH"). Prefer addresses for arbitrary tokens — symbol pricing collides across tokens that share a ticker (a spam token can inherit a real token's price). Exactly one of symbols or addresses must be provided.

Example:SOL

Comma-separated token symbols to price (e.g. "SOL,ETH"). Prefer addresses for arbitrary tokens — symbol pricing collides across tokens that share a ticker (a spam token can inherit a real token's price). Exactly one of symbols or addresses must be provided.

addressesstring

Comma-separated CAIP-2 token ids to price by exact on-chain contract (e.g. "eip155:8453:0x833589..."). Collision-free; preferred over symbols. Exactly one of symbols or addresses must be provided.

Example:eip155:8453:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913

Comma-separated CAIP-2 token ids to price by exact on-chain contract (e.g. "eip155:8453:0x833589..."). Collision-free; preferred over symbols. Exactly one of symbols or addresses must be provided.

Headers

x-api-keystring required

API key for authentication

Example:your-api-key

API key for authentication

x-api-versionstring

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Example:2026-04.amazon

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Response

USD unit prices for the requested symbols

pricesobject required

USD unit price keyed by uppercased token symbol (for symbols) or by CAIP-2 token id (for addresses)

Example response

{
  "prices": {
    "SOL": 168.42
  }
}