SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Exchange Rates

List exchange rates

GET/api/v1/products/exchange-rates

Lists every configured currency pair. Staff-only.

Requires Authorization
ADMIN, SUPPORT only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/products/exchange-rates \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": [
    {
      "id": "fx_1a2b3c",
      "fromCurrency": "USD",
      "toCurrency": "CDF",
      "rate": "2800",
      "updatedBy": "admin_9f8e7d",
      "updatedAt": "2026-02-01T08:00:00.000Z"
    }
  ]
}