Skip to content

List frozen months

GET /api/v2/external/exchange-rate-freezes

Authentication: x-api-key header, with the exchange-rate-freezes:write scope. See Authentication and limits.

Returns the months (YYYY-MM) for which the client has frozen exchange rates.

Response

200 The frozen months.

json
[
  {
    "object": "exchangeRateFreeze",
    "yearMonth": "2026-10"
  }
]
Response fields
FieldTypeDescription
[].objectstringString describing the object type (auto-description). One of: exchangeRateFreeze.
[].yearMonthstringFrozen month, YYYY-MM.

Errors

Errors use the application/problem+json envelope with stable machine-readable codes. See the Errors guide.

StatusDescription
401Missing or invalid API key (invalid_api_key), or expired key (api_key_expired).
403API key lacks the required scope (insufficient_scope, with requiredScope extension) or the operation is not enabled for this client (forbidden).
429Daily API call limit exceeded (rate_limit_exceeded): the Retry-After header gives the seconds until reset.

Example request

bash
curl "https://api.renewr.example/api/v2/external/exchange-rate-freezes" \
  -H "x-api-key: $RENEWR_API_KEY"

Renewr External API v2. Access on invitation.