GET/projects/api/v3/custom-exchange-rates/live.json

Get live exchange rates for custom pairs.

Retrieves live exchange rates from the Forex service for all currency pairs that have custom exchange rates defined.

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
    LiveRatesForCustomPairsResponse contains live exchange rates for all custom-defined currency pairs.
  • Code
    504
    Type
    object
    Schema
    Description
    504 Gateway Timeout
    ErrorResponse defines how []Error should be marshaled to JSON.

Examples

200 OK

LiveRatesForCustomPairsResponse
{
  "rates": [
    {
      "date": "2026-05-25",
      "fromCurrency": "string",
      "rate": 0,
      "toCurrency": "string"
    }
  ]
}