Admin currencies

Lists the active currencies with their current Bolívar exchange rates for the back office. Paths are relative to the /api/v1 prefix; this is a back-office endpoint that requires an admin token.

Requires an admin bearer token (see Admin auth). Admin only.

See Common errors. For the public single-currency lookup, see Exchange rate.

Endpoints

Method URI Access Description
GET /admin/currencies Admin List active currencies with live Bolívar rates

GET /admin/currencies

Returns active currencies (ordered by code) with their current rate.

Response 200

{
  "items": [
    {
      "code": "USD",
      "name": "US Dollar",
      "symbol": "$",
      "rateBs": 36.5,
      "rateCents": 3650,
      "source": "BCV",
      "autoRefresh": true,
      "fetchedAt": "2026-06-29T08:00:00+00:00",
      "stale": false
    }
  ]
}

stale is true when fetchedAt/rateBs come from the last known value rather than a current rate.