> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getnimbus.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get SUI Token Prices (single)

> Retrieves the current price of one SUI token based on provided address and an optional timestamp.



## OpenAPI

````yaml /api-reference/openapi.json get /tokens/sui/{address}/price
openapi: 3.0.0
info:
  title: Nimbus API
  version: 1.0.0
  description: >-
    API for Nimbus


    ## Rate Limiting

    This API implements rate limiting to ensure fair usage and protect our
    services. The current rate limit is:


    - **40 requests per 1 minute** per IP address


    If you exceed this limit, you will receive a 429 (Too Many Requests)
    response. Please wait for the rate limit window to reset before making
    additional requests.


    If you need more, please contact us at **thanhle@getnimbus.io** or TG
    **@thanhle27** to get premium API Key.
servers:
  - url: https://api.getnimbus.io
    description: API server
security: []
tags: []
paths:
  /tokens/sui/{address}/price:
    get:
      tags:
        - Token
      summary: Get SUI Token Prices (single)
      description: >-
        Retrieves the current price of one SUI token based on provided address
        and an optional timestamp.
      parameters:
        - in: path
          name: address
          required: true
          schema:
            type: string
          example: 0x2::sui::SUI
          description: The SUI token address.
        - in: query
          name: timestamp
          schema:
            type: integer
          description: Optional timestamp to fetch the price at a specific time.
      responses:
        '200':
          description: Successful response containing SUI token price details.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        contract_address:
                          type: string
                          description: The contract address of the SUI token.
                        symbol:
                          type: string
                          description: The symbol representing the SUI token.
                        price:
                          type: number
                          description: The current price of the SUI token.
                        last24hPrice:
                          type: number
                          description: The price of the SUI token over the last 24 hours.
                        timestamp:
                          type: number
                          description: The Unix timestamp of the price data.
                        decimals:
                          type: integer
                          description: The number of decimal places for the SUI token.
                        source:
                          type: string
                          description: The source providing the price information.
        '400':
          description: Bad request due to missing or invalid parameters.
        '500':
          description: Internal server error.
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication
      x-default: nimbus-6a7c85b1-99f4-4d99-b8f3-e6e49b8daad0

````