Skip to main content
GET
/
fx
/
rates
Get Rates
curl --request GET \
  --url https://api.usepooler.com/fx/rates \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "stan": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "data": [
    {
      "currency": "<string>",
      "processing_fee": "<string>",
      "rate_in_usd": "<string>",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}
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

data
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
Exchange rates are updated in real-time. Always fetch fresh rates before initiating currency conversion transactions.

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header as: Bearer {your_api_key}

Response

200 - application/json

FX rates retrieved successfully

success
boolean
message
string
stan
string<uuid>
data
object[]