Geocoding
Search a parcel by KAEK
Search for a parcel using its KAEK (cadastral) code.
GET
/
api
/
geocoding
/
kaek-search
/
Search a parcel by KAEK code
curl --request GET \
--url https://pandora.ask-wire.com/api/geocoding/kaek-search/import requests
url = "https://pandora.ask-wire.com/api/geocoding/kaek-search/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://pandora.ask-wire.com/api/geocoding/kaek-search/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pandora.ask-wire.com/api/geocoding/kaek-search/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://pandora.ask-wire.com/api/geocoding/kaek-search/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://pandora.ask-wire.com/api/geocoding/kaek-search/")
.asString();require 'uri'
require 'net/http'
url = URI("https://pandora.ask-wire.com/api/geocoding/kaek-search/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"kaek": "123456789",
"area": 250.5,
"geometry": "POLYGON((23.7 37.9, ...))"
}Overview
Returns parcel information for a given KAEK (cadastral) code, including the parcel area and geometry. Authentication is not enforced at the schema level, but a valid Bearer token is recommended for production integrations.Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
kaek_code | string | Yes | KAEK number to search for. |
Response fields
| Field | Type | Description |
|---|---|---|
kaek | string | The KAEK code. |
area | number | Parcel area. |
geometry | string | Parcel geometry (e.g. WKT/GeoJSON string). |
Example request
curl -X GET "https://pandora.ask-wire.com/api/geocoding/kaek-search/?kaek_code=123456789" \
-H "Authorization: Bearer YOUR_TOKEN"
Query Parameters
KAEK number to search for.
Response
200 - application/json
KAEK parcel result
Was this page helpful?
⌘I
Search a parcel by KAEK code
curl --request GET \
--url https://pandora.ask-wire.com/api/geocoding/kaek-search/import requests
url = "https://pandora.ask-wire.com/api/geocoding/kaek-search/"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://pandora.ask-wire.com/api/geocoding/kaek-search/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pandora.ask-wire.com/api/geocoding/kaek-search/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://pandora.ask-wire.com/api/geocoding/kaek-search/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://pandora.ask-wire.com/api/geocoding/kaek-search/")
.asString();require 'uri'
require 'net/http'
url = URI("https://pandora.ask-wire.com/api/geocoding/kaek-search/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"kaek": "123456789",
"area": 250.5,
"geometry": "POLYGON((23.7 37.9, ...))"
}