Info - Information based on Coordinates

Guest

Info

Get information about the zip code (postal code) or coordinates.

GET /v2/info/coordinates
Free Essential Plus Premium Professional Enterprise

Information based on Coordinates

Allows you to retrieve information for a specific location based on its geographical coordinates (latitude and longitude). This functionality is useful for applications that require specific details about a location based on its geographical location.

GET https://zip-api.eu/api/v2/info/coordinates?latitude=...&longitude=...&accuracy=...&unit=...&fields=...
  • JavaScript
  • cURL
  • Python
  • PHP
  • Java
  • C#
const url = "https://zip-api.eu/api/v2/info/coordinates?latitude=47.8667&longitude=13.1167";

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/info/coordinates?latitude=47.8667&longitude=13.1167" \
     -H "Authorization: Bearer YOUR_API_KEY"
import requests

url = "https://zip-api.eu/api/v2/info/coordinates?latitude=47.8667&longitude=13.1167"
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/info/coordinates?latitude=47.8667&longitude=13.1167";

// 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/info/coordinates?latitude=47.8667&longitude=13.1167";
            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/info/coordinates?latitude=47.8667&longitude=13.1167";

        // 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 latitude float - required

The latitude of the geographical position, measured in decimal degrees.

GET longitude float - required

The longitude of the geographical position, measured in decimal degrees.

GET accuracy float - optional (Default value: 10)

The accuracy or precision of the provided data, measured in an appropriate unit.

GET unit string - optional (Default value: km)

The unit in which the measurements are expressed. Possible values ​​are: m, km, mi, ft.

GET fields string - optional

The parameters to filter for, separated by commas.

Response Parameters

countryCode string

Two-letter country code (Alpha-2 code) defined in ISO 3166-1.

postalCode string

The postal code of the place or region.

state string

The geographical name of the state or province.

placeName string

The name of the place or city.

latitude float

The latitude of the geographical position, measured in decimal degrees.

longitude float

The longitude of the geographical position, measured in decimal degrees.

accuracy float (Default value: 10)

The accuracy or precision of the provided data, measured in an appropriate unit.

unit string (Default value: km)

The unit in which the measurements are expressed. Possible values ​​are: m, km, mi, ft.

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