Countries
You use a GET method and the following URL to return a list of the countries:
$ curl '{service_url}/api/v2/dictionaries/countries?tax_supported=true&public_token=public_***********'
where {service_url}
is the service's environment URL.
You can use the tax_supported
query parameter to filter for countries where tax is or is not supported.
Fields
The following fields are returned for countries:
Field | Description |
---|---|
tax_number_country_code | VAT number country code. Required for Greece. |
codenum | The 3 digit ISO code. |
name | The name of the country. |
code_long | The 3 letter code that represents the country. |
ccn3 | The 3 digit ISO country code. |
code | The 2 letter ISO country code |
tax_region | The code for the tax region. For example EU. |
cca2 | The 2 letter ISO country code. |
callingCode | List of phone number calling codes. |
cca3 | The 3 letter ISO country code. |
tax_supported | Indicates whether tax is supported for this country or not. |
For example:
{
"dictionary": [
{
"tax_number_country_code": "AT",
"codenum": "040",
"name": "Austria",
"code_long": "AUT",
"ccn3": "040",
"code": "AT",
"cca2": "AT",
"callingCode": [
"43"
],
"cca3": "AUT",
"tax_supported": true
},
{
"tax_number_country_code": "BE",
"codenum": "056",
"name": "Belgium",
"code_long": "BEL",
"ccn3": "056",
"code": "BE",
"cca2": "BE",
"callingCode": [
"32"
],
"cca3": "BEL",
"tax_supported": true
},
{
"tax_number_country_code": "BG",
"codenum": "100",
"name": "Bulgaria",
"code_long": "BGR",
"ccn3": "100",
"code": "BG",
"cca2": "BG",
"callingCode": [
"359"
],
"cca3": "BGR",
"tax_supported": true
},
{
"tax_number_country_code": "HR",
"codenum": "191",
"name": "Croatia",
"code_long": "HRV",
"ccn3": "191",
"code": "HR",
"cca2": "HR",
"callingCode": [
"385"
],
"cca3": "HRV",
"tax_supported": true
},
{
"tax_number_country_code": "CY",
"codenum": "196",
"name": "Cyprus",
"code_long": "CYP",
"ccn3": "196",
"code": "CY",
"cca2": "CY",
"callingCode": [
"357"
],
"cca3": "CYP",
"tax_supported": true
},
{
"tax_number_country_code": "CZ",
"codenum": "203",
"name": "Czech Republic",
"code_long": "CZE",
"ccn3": "203",
"code": "CZ",
"cca2": "CZ",
"callingCode": [
"420"
],
"cca3": "CZE",
"tax_supported": true
},
//...
]
}
Updated over 1 year ago