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

# Get Wallet Rates

> Returns the current buy/sell exchange rates for all wallet currency pairs available to the authenticated user.

Rates are filtered by the user's country and account currency. Each entry includes the currency pair ticker, buy and sell rates, and the 24h variation percentage.

---

**Authorization**

- Requires a valid API key.



## OpenAPI

````yaml get /wallet/rates/
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /wallet/rates/:
    get:
      tags:
        - Ripio Wallet
      summary: rates - Get wallet rates
      description: >-
        Returns the current buy/sell exchange rates for all wallet currency
        pairs available to the authenticated user.


        Rates are filtered by the user's country and account currency. Each
        entry includes the currency pair ticker, buy and sell rates, and the 24h
        variation percentage.


        ---


        **Authorization**


        - Requires a valid API key.
      parameters:
        - in: header
          name: authorization
          required: true
          description: The API key as a string.
          schema:
            type: string
        - in: header
          name: signature
          required: true
          description: >-
            See the [Generating
            Signature](/static/api/authentication#generating-signature) section
            for more details.
          schema:
            type: string
        - in: header
          name: timestamp
          required: true
          description: >-
            A timestamp in milliseconds. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
        - in: header
          name: timstamp-tolerance
          required: false
          description: >-
            An additional, non-required parameter, that you can send to specify
            the number of milliseconds after the timestamp for the request to be
            valid. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Wallet rates retrieved successfully.
                properties:
                  error_code:
                    type: string
                    example: null
                  message:
                    type: string
                    example: null
                  data:
                    items:
                      description: Exchange rate for a wallet currency pair.
                      properties:
                        ticker:
                          description: Currency pair ticker (e.g. `BTC_ARS`).
                          type: string
                          example: BTC_ARS
                        base_currency_balance_id:
                          description: Internal balance ID of the base currency.
                          type: integer
                          example: 1
                        quote_currency_balance_id:
                          description: Internal balance ID of the quote currency.
                          type: integer
                          example: 2
                        buy_rate:
                          description: Buy rate as a decimal string.
                          type: string
                          example: '98000000.00'
                        sell_rate:
                          description: Sell rate as a decimal string.
                          type: string
                          example: '95000000.00'
                        variation:
                          description: 24h price variation percentage.
                          type: string
                          example: '1.25'
                      required:
                        - ticker
                        - base_currency_balance_id
                        - quote_currency_balance_id
                        - buy_rate
                        - sell_rate
                        - variation
                      type: object
                    type: array
                required:
                  - error_code
                  - message
                  - data
                type: object
                example:
                  error_code: null
                  message: null
                  data:
                    - ticker: BTC_ARS
                      base_currency_balance_id: 1
                      quote_currency_balance_id: 2
                      buy_rate: '98000000.00'
                      sell_rate: '95000000.00'
                      variation: '1.25'
                    - ticker: ETH_ARS
                      base_currency_balance_id: 3
                      quote_currency_balance_id: 2
                      buy_rate: '4800000.00'
                      sell_rate: '4650000.00'
                      variation: '-0.80'
        '401':
          description: Error response 401
        '403':
          description: Error response 403
        '503':
          description: Error response 503

````