SwiftGoma.SwiftGoma

Search endpoints

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

Exchange Rates

Get exchange rate

GET/api/v1/products/exchange-rates/:id

Returns one exchange rate pair. Staff-only.

Requires Authorization
ADMIN, SUPPORT only
Session

Path parameters

idstringrequired
Exchange rate ID.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/products/exchange-rates/:id \
  --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"
  }
}