Countries - Search Country Information

Guest

Countries

Get information about countries.

GET /v2/countries/search
Premium Professional Enterprise

Search Country Information

Allows you to search for country information based on a search term. This feature is useful for applications that want to retrieve country information based on a search term.

GET https://zip-api.eu/api/v2/countries/search?query=...&search=...&match=...
  • JavaScript
  • cURL
  • Python
  • PHP
  • Java
  • C#
const url = "https://zip-api.eu/api/v2/countries/search?query=5020&search=postalCode&match=exact";

fetch(url, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY'
  }
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
curl -X GET "https://zip-api.eu/api/v2/countries/search?query=5020&search=postalCode&match=exact" \
     -H "Authorization: Bearer YOUR_API_KEY"
import requests

url = "https://zip-api.eu/api/v2/countries/search?query=5020&search=postalCode&match=exact"
headers = {
    "Authorization": "Bearer YOUR_API_KEY"
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
    print(response.json())
else:
    print(f"Error: {response.status_code}")
$url = "https://zip-api.eu/api/v2/countries/search?query=5020&search=postalCode&match=exact";

// Initialize cURL session
$ch = curl_init();

// Set options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_API_KEY'
]);

// Execute the request
$response = curl_exec($ch);

// Check for errors
if (curl_errno($ch)) {
    echo 'Error: ' . curl_error($ch);
} else {
    echo $response;
}

// Close the cURL session
curl_close($ch);
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class ApiRequest {
    public static void main(String[] args) {
        try {
            String url = "https://zip-api.eu/api/v2/countries/search?query=5020&search=postalCode&match=exact";
            URL obj = new URL(url);
            HttpURLConnection con = (HttpURLConnection) obj.openConnection();

            // Request setup
            con.setRequestMethod("GET");
            con.setRequestProperty("Authorization", "Bearer YOUR_API_KEY");

            // Get response code
            int responseCode = con.getResponseCode();
            System.out.println("Response Code : " + responseCode);

            // Read the response
            BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
            String inputLine;
            StringBuffer response = new StringBuffer();

            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();

            // Print the response
            System.out.println(response.toString());

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
using System;
using System.Net.Http;
using System.Threading.Tasks;

class Program
{
    private static readonly HttpClient client = new HttpClient();

    static async Task Main(string[] args)
    {
        string url = "https://zip-api.eu/api/v2/countries/search?query=5020&search=postalCode&match=exact";

        // Add authorization header
        client.DefaultRequestHeaders.Add("Authorization", "Bearer YOUR_API_KEY");

        // Send GET request
        HttpResponseMessage response = await client.GetAsync(url);

        // Check the status code and get the response content
        if (response.IsSuccessStatusCode) {
            string responseBody = await response.Content.ReadAsStringAsync();
            Console.WriteLine(responseBody);
        } else {
            Console.WriteLine("Error: " + response.StatusCode);
        }
    }
}

Header

API-Key string - required
Bearer token for authentication.

Query Parameters

GET query string - required

The search term or string to be used for searching.

GET search string - optional

The parameters to search for, separated by commas.
Available parameters: postalCode, placeName, state;

GET match string - optional (Default value: autocomplete)

Specifies the search behavior for matching the term in the fields.
Available types:

  • all: Matches any part of the field.
  • exact: Matches the field exactly.
  • autocomplete: Prefix-based matching for autocomplete.
  • leading: Matches the beginning of the field.
  • trailing: Matches the end of the field.

Response Parameters

name[en] string

The name of the search entity.

alpha2Code string

The two-character country code (Alpha-2 Code) as defined by ISO 3166-1.

alpha3Code string

The three-character country code (Alpha-3 Code) as defined by ISO 3166-1.

numericCode int

The three-digit numeric code representing the country as defined by ISO 3166-1.

region[en] string

The region where the country is located, such as Europe or Africa.

regionCode int

A numeric code representing the region of the country.

subregion[en] string

The subregion of the country, for example: Southern Europe or Eastern Africa.

subregionCode int

A numeric code representing the subregion of the country.

topLevelDomain string

The country's top-level domain (TLD), for example: .at for Austria or .us for the United States.

Status codes

200 Standard response for successfully processed requests
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
405 Method Not Allowed
409 Conflict
413 Request Entity Too Large
429 Too Many Requests
500 Internal Server Error