Latest Price API

Retrieve current oracle prices for all supported tokens.

Endpoint

GET /api/v1/latestPrice

Parameters

Parameter
Type
Required
Description

get_all

boolean

No

Set to true to get all token prices

Response

{
  "data": {
    "prices": [
      {
        "symbol": "USDT/USD",
        "bsc_token_addr": "0x074935F13b26.........96Ce1dD304B3Af",
        "price": "1.0008127933438",
        "timestamp": 1769008373
      },
      {
        "symbol": "ETH/USD",
        "bsc_token_addr": "0xaF8199cAD822f.........538eD1fEccA906b0Fa",
        "price": "2989.4250135",
        "timestamp": 1769008372
      }
    ]
  }
}

Response Fields

Top-level Fields

Field
Type
Description

data

object

Response data containing prices array

Price Fields

Field
Type
Description

symbol

string

Trading pair symbol (e.g., ETH/USD)

bsc_token_addr

string

BSC token contract address

price

string

Current oracle price (USD)

timestamp

number

Price update time (Unix seconds)

Last updated