Skip to main content
POST
https://api.hotstuff.trade
/
info
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "oracle",
    "params": {
        "symbol": "USDT/USDC"
    }
}'
{
    "symbol": "USDT/USDC",
    "index_price": "0.99959677",
    "ext_mark_price": "1.00010044",
    "updated_at": 1767612251
}
Retrieve oracle price information for a specific symbol including index price, external mark price, and last update timestamp.
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "oracle",
    "params": {
        "symbol": "USDT/USDC"
    }
}'
{
    "symbol": "USDT/USDC",
    "index_price": "0.99959677",
    "ext_mark_price": "1.00010044",
    "updated_at": 1767612251
}

Request Body

method
string
default:"oracle"
required
Must be “oracle” for this endpoint
params
object
default:"{\"symbol\": \"USDT/USDC\"}"
required