cURL
curl --request POST \ --url https://api.getnimbus.io/tokens/sui/price \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "addresses": "0x2::sui::SUI", "timestamp": 123 } '
{ "data": [ { "contract_address": "<string>", "symbol": "<string>", "price": 123, "last24hPrice": 123, "timestamp": 123, "decimals": 123, "source": "<string>" } ] }
Fetches the price of one or more SUI tokens for specified addresses and an optional timestamp.
API key for authentication
Comma-separated list of SUI token addresses. Maximum 50 tokens.
"0x2::sui::SUI"
Optional timestamp to get the price at a specific time.
Successful response with SUI token price information.
Show child attributes
The contract address of the SUI token.
The symbol of the SUI token.
The price of the SUI token.
The price of the SUI token in the last 24 hours.
The unix timestamp of price.
The number of decimals for the SUI token.
The source of the price information.