currencies

Retrieve the conversion rate for one specific currency.

Description

This can be used to convert quantities from GBP to the user's currency

get/v3/currencies/{code}/

Path parameters

code'AUD' | 'BRL' | 'CAD' | 'CHF' | 'CZK' | 'DKK' | 'EUR' | 'GBP' | 'HKD' | 'HUF' | 'JPY' | 'NOK' | 'PLN' | 'SEK' | 'USD' required
Example:AUD

Currency code

Response

Currency success response

codestring required

3 letter currency code, according to ISO 4217

namestring required

Currency name

rate_to_gbpstring

Currency rate when converting to GBP

Example response

{
  "code": "EUR",
  "name": "Euro",
  "rate_to_gbp": "1.14"
}

Changes