Get supported countries
Introduction
Each request will need a country code to identify in what country you want to search for data. Using the following request you will get a list of counties that are supported, and the code to use in the request.
Method: GET
Example request:
GET https://api.apicheck.nl/lookup/v1/country
This call will return the following JSON data:
{
"error": false,
"data": [
{
"id": 1,
"name": "Nederland",
"code": "NL",
"int_name": "The Netherlands"
},
{
"id": 2,
"name": "België",
"code": "BE",
"int_name": "Belgium"
},
{
"id": 3,
"name": "Luxemburg",
"code": "LU",
"int_name": "Luxembourg"
},
{
"id": 4,
"name": "Frankrijk",
"code": "FR",
"int_name": "France"
}
]
}
Run and try out in Postman: