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

Path Parameters

address
string
required

The SUI token address.

Query Parameters

timestamp
integer

Optional timestamp to fetch the price at a specific time.

Response

200
application/json
Successful response containing SUI token price details.
data
object[]