Skip to main content
GET
/
tokens
/
sui
/
{address}
/
price
Get SUI Token Prices (single)
curl --request GET \
  --url https://api.getnimbus.io/tokens/sui/{address}/price \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "contract_address": "<string>",
      "symbol": "<string>",
      "price": 123,
      "last24hPrice": 123,
      "timestamp": 123,
      "decimals": 123,
      "source": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Trial key: trial-0a620a64-975b-4f45-a73f-9d363200c92e

Path Parameters

address
string
required

The SUI token address.

Query Parameters

timestamp
integer

Optional timestamp to fetch the price at a specific time.

Response

Successful response containing SUI token price details.

data
object[]
I