GET
/
tokens
/
sui
/
price
curl --request GET \
  --url https://api.getnimbus.io/tokens/sui/price
{
  "data": [
    {
      "contract_address": "<string>",
      "symbol": "<string>",
      "price": 123,
      "last24hPrice": 123,
      "timestamp": 123,
      "decimals": 123,
      "source": "<string>"
    }
  ]
}

Query Parameters

addresses
string
required

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

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[]