Get Exchange Rates

Retrieve the current Market Exchange Rates for one or more currency pairs (such as USDGBP). This information is constantly being updated.

Authentication: Bearer token required

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

pairstringRequiredformat: "^[A-Z]{6}$"

A pair of three letter Currency Codes (as specified by ISO4217). You can provide a single currency pair (e.g. ?pair=USDGBP) or multiple currency pairs (e.g. ?pair=EURAUD&pair=USDEUR) to reduce the number of requests you make.

Response

Ok. Successfully retrieved exchange rates. The response contains an array of exchange rate objects, each with the following fields: - **Quote** (string): The exchange rate value as a string to preserve precision (e.g., "1.31100000") - **Time** (string): Timestamp when the rate was last updated in the format "Day Mon DD HH:MM:SS UTC YYYY" (e.g., "Wed Nov 12 10:32:20 UTC 2025") - **Name** (string): The currency pair code (e.g., "GBPUSD")
Namestringformat: "^[A-Z]{6}$"

The Currency Code pair in the format of two three-letter ISO 4217 currency codes concatenated together (e.g., “GBPUSD” represents the exchange rate from GBP to USD).

Timestring

Timestamp indicating when the exchange rate was last updated. The format follows the pattern “Day Mon DD HH:MM:SS UTC YYYY” (e.g., “Wed Nov 12 10:32:20 UTC 2025”).

Quotestringformat: "^[0-9]+(\.[0-9]+)?$"

The exchange rate price as a string. This represents the conversion rate between the two currencies specified in the Name field. The value is returned as a string to preserve precision and can include multiple decimal places (e.g., “1.31100000”).

Errors