Skip to main content
GET
/
token-prices
Get live token prices
curl --request GET \
  --url https://gateway.ramses.xyz/v3/hyperevm/token-prices
[
  {
    "address": "<string>",
    "priceUsd": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://tech.ramses.xyz/llms.txt

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

Query Parameters

tokens
string
required

Comma-separated list of token addresses (0x-prefixed, 40 hex characters each)

Example:

"0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"

Response

Array of token addresses with their live USD prices

address
string
required

Token contract address

priceUsd
number
required

Current live price in USD

Example:
[
{
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"priceUsd": 1
},
{
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"priceUsd": 3500
}
]