Skip to main content
GET
/
tokens
/
sui
/
price
Retrieve SUI Token Price
curl --request GET \
  --url https://api.getnimbus.io/tokens/sui/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

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

Successful response with SUI token price information.

data
object[]
I