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

GET: /codes/country

ProZ.com uses the ISO 3166-1 alpha-2 standard which defines 2-character country codes.

Parameters

  • codes: One or more comma-separated 2-character country codes. If specified, only results for these codes are returned. If omitted, all countries are returned.

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" /codes/country?codes=cc,il,nc,us

Response

{
  "countries": [
    {
      "country_code": "cc",
      "country_name": "Cocos (Keeling) Isl."
    },
    {
      "country_code": "il",
      "country_name": "Israel"
    },
    {
      "country_code": "nc",
      "country_name": "New Caledonia"
    },
    {
      "country_code": "us",
      "country_name": "United States"
    }
  ]
}