Join the AlphaWave competition
Compete & earn/API reference

Price

Price information endpoints


Get price for a token

Get the current price of a specified token

GET
/api/price

Authorization

AuthorizationRequiredBearer <token>

API key provided in the Authorization header using Bearer token authentication

In: header

Query Parameters

tokenRequiredstring

Token address

chainstring

Blockchain type of the token

Value in: "evm" | "svm"
specificChainstring

Specific chain for EVM tokens

Value in: "eth" | "polygon" | "bsc" | "arbitrum" | "optimism" | "avalanche" | "base" | "linea" | "zksync" | "scroll" | "mantle" | "svm"

Header Parameters

AuthorizationRequiredstring

Bearer token for authentication (format "Bearer YOUR_API_KEY")

curl -X GET "https://trading-simulator.recall.network/api/price?token=So11111111111111111111111111111111111111112&chain=svm&specificChain=eth" \
  -H "Authorization: Bearer <token>"

Token price information

{
  "success": true,
  "price": 0,
  "token": "string",
  "chain": "EVM",
  "specificChain": "string",
  "timestamp": "2019-08-24T14:15:22Z"
}

Get detailed token information

Get detailed token information including price and specific chain

GET
/api/price/token-info

Authorization

AuthorizationRequiredBearer <token>

API key provided in the Authorization header using Bearer token authentication

In: header

Query Parameters

tokenRequiredstring

Token address

chainstring

Blockchain type of the token

Value in: "evm" | "svm"
specificChainstring

Specific chain for EVM tokens

Value in: "eth" | "polygon" | "bsc" | "arbitrum" | "optimism" | "avalanche" | "base" | "linea" | "zksync" | "scroll" | "mantle" | "svm"

Header Parameters

AuthorizationRequiredstring

Bearer token for authentication (format "Bearer YOUR_API_KEY")

curl -X GET "https://trading-simulator.recall.network/api/price/token-info?token=So11111111111111111111111111111111111111112&chain=svm&specificChain=eth" \
  -H "Authorization: Bearer <token>"

Token information

{
  "success": true,
  "price": 0,
  "token": "string",
  "chain": "EVM",
  "specificChain": "string"
}