currency_exchange_rates

Store a new currency exchange rate.

Stores a new exchange rate. The data required can be submitted as a JSON body or as a list of parameters.

post/v1/exchange-rates

Headers

X-Trace-Idstring uuid
Example:40c71bbb-c676-4f24-83cf-cc725d7d7a00

Unique identifier associated with this request.

Request body

datestring date required

The date to which the exchange rate is applicable.

fromstring string required

The base currency code.

tostring string required

The destination currency code.

ratestring string

The exchange rate from the base currency to the destination currency.

Example request

{
  "date": "2026-08-01",
  "from": "USD",
  "to": "EUR",
  "rate": "2.3456"
}

Response

New exchange stored, result in response. If a rate already exists for this currency pair and date, it will be updated.

Changes

No recorded changes to this endpoint across all 1 revision of this API.