> ## Documentation Index
> Fetch the complete documentation index at: https://hellasdirect.ask-wire.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Search a parcel by KAEK

> Search for a parcel using its KAEK (cadastral) code.

## 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

```bash theme={null}
curl -X GET "https://pandora.ask-wire.com/api/geocoding/kaek-search/?kaek_code=123456789" \
  -H "Authorization: Bearer YOUR_TOKEN"
```


## OpenAPI

````yaml GET /api/geocoding/kaek-search/
openapi: 3.1.0
info:
  title: Properties API
  version: 1.0.0
  description: Public properties and foreclosure listings API
servers:
  - url: https://pandora.ask-wire.com
    description: Main API (Properties)
  - url: https://zeus.ask-wire.com
    description: Auth API
security:
  - bearerAuth: []
paths:
  /api/geocoding/kaek-search/:
    get:
      summary: Search a parcel by KAEK code
      description: >-
        Searches for a parcel using its KAEK (cadastral) code. Authentication is
        not enforced at the schema level but a valid Bearer token is recommended
        for production integrations.
      operationId: kaekSearch
      parameters:
        - name: kaek_code
          in: query
          required: true
          description: KAEK number to search for.
          schema:
            type: string
      responses:
        '200':
          description: KAEK parcel result
          content:
            application/json:
              schema:
                $ref: d590ef65-5456-4a0a-abb7-686f244536a0
              example:
                kaek: '123456789'
                area: 250.5
                geometry: POLYGON((23.7 37.9, ...))
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````