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
}Global
oracle
Send POST request to /info with method: “oracle”
POST
/
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"
}
}'
⌘I