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

# Get Rates

> Retrieve current foreign exchange rates for supported currencies.

Retrieve current foreign exchange rates for supported currencies. This endpoint provides real-time exchange rates for all supported currency pairs.

## Overview

This endpoint returns the current foreign exchange rates for all supported currencies. Rates are updated regularly and include processing fees.

## Response

<ResponseField name="data" type="array">
  Array of FX rate objects, each containing:

  * `currency`: Currency code (e.g., "USD", "NGN", "KES")
  * `processing_fee`: Processing fee percentage
  * `rate_in_usd`: Exchange rate relative to USD
  * `updated_at`: Timestamp when rate was last updated
</ResponseField>

<Note>
  Exchange rates are updated in real-time. Always fetch fresh rates before initiating currency conversion transactions.
</Note>


## OpenAPI

````yaml GET /fx/rates
openapi: 3.0.0
info:
  title: Pooler Developer API
  description: >-
    Comprehensive API documentation for Pooler payment and financial services
    platform
  version: 1.0.0
servers:
  - url: https://api.usepooler.com
    description: Production server
  - url: https://sandbox.usepooler.com
    description: Sandbox server
security:
  - bearerAuth: []
paths:
  /fx/rates:
    get:
      tags:
        - FX
      summary: Get Rates
      description: Retrieve current foreign exchange rates for supported currencies.
      operationId: getFXRates
      responses:
        '200':
          description: FX rates retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FXRatesResponse'
components:
  schemas:
    FXRatesResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          type: array
          items:
            $ref: '#/components/schemas/FXRate'
    FXRate:
      type: object
      properties:
        currency:
          type: string
        processing_fee:
          type: string
        rate_in_usd:
          type: string
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Include your API key in the Authorization
        header as: Bearer {your_api_key}

````