Skip to main content

4.9 Miscellaneous Requests

Available calls:

4.9.1 Return the list of exchange rates between GBP and other currencies

Method and URL:

GET /v1/xrates/

Return Data: A list of objects with information about each exchange rate.

Output Format:

ccy [ string ]:

The ISO 4217 code for the currency.

rate [ number ]:

The exchange rate between GBP and the currency, i.e.

amount in ccy = amount in GBP × rate

Example:

[{"ccy": "USD", "rate": 1.271},
{"ccy": "GBP", "rate": 1.0},
{"ccy": "EUR", "rate": 1.1197}]