ProZ.com global directory of translation services
The translation workplace
Ideas

GET: /codes/account-type

ProZ.com uses currency codes defined in the ISO 4217 standard. A daily cron job updates the ProZ.com database with exchange rate changes provided by XE.com.

Parameters

  • codes: One or more comma-separated string 3-character currency codes. If specified, only results for these codes are returned. If omitted, all currencies are returned.
  • convertible: A boolean option to return only currencies which have exchange rate conversion data available. This may cause less currencies to be returned than requested with the codes parameter

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" /codes/currency?codes=bnd,bwp,rsd&convertible=true

Response

{
  "currencies": [
    {
      "currency_code": "bnd",
      "currency_name": "Brunei dollar"
    },
    {
      "currency_code": "bwp",
      "currency_name": "Botswana pula"
    },
    {
      "currency_code": "rsd",
      "currency_name": "Serbian dinars"
    }
  ]
}