POST
/
tokens
/
sui
/
price
curl --request POST \
  --url https://api.getnimbus.io/tokens/sui/price \
  --header 'Content-Type: application/json' \
  --data '{
  "addresses": "0x2::sui::SUI",
  "timestamp": 123
}'
{
  "data": [
    {
      "contract_address": "<string>",
      "symbol": "<string>",
      "price": 123,
      "last24hPrice": 123,
      "timestamp": 123,
      "decimals": 123,
      "source": "<string>"
    }
  ]
}

Body

application/json
addresses
string
required

Comma-separated list of SUI token addresses. Maximum 50 tokens.

Example:

"0x2::sui::SUI"

timestamp
integer

Optional timestamp to get the price at a specific time.

Response

200
application/json
Successful response with SUI token price information.
data
object[]