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

# Query layer properties

> Retrieve properties from geographic and environmental layers for a given location.

## Overview

Returns properties from a broader set of geographic and environmental layers for a given coordinate. Primarily covers Cyprus-focused layers including floods, seismic zones, and wildfire risk.

Authentication is not enforced at the schema level, but a valid Bearer token is recommended for production integrations.

***

## Query parameters

| Parameter   | Type   | Required | Description                                                                                         |
| ----------- | ------ | -------- | --------------------------------------------------------------------------------------------------- |
| `latitude`  | number | Yes      | Latitude of the location.                                                                           |
| `longitude` | number | Yes      | Longitude of the location.                                                                          |
| `layer`     | string | Yes      | Layer type. One of: `building_blocks`, `country`, `floods`, `parcels`, `seismic_zones`, `wildfire`. |

***

## Response

Returns layer data for the given location. Contact the Ask Wire team to confirm the expected payload shape for each layer before integrating.

***

## Example request

```bash theme={null}
curl -X GET "https://pandora.ask-wire.com/api/layer-properties/?latitude=35.17&longitude=33.36&layer=floods" \
  -H "Authorization: Bearer YOUR_TOKEN"
```


## OpenAPI

````yaml GET /api/layer-properties/
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/layer-properties/:
    get:
      summary: Query layer properties
      description: >-
        Retrieves properties from a broader set of geographic/environmental
        layers for a given location. Cyprus-focused layers. Authentication is
        not enforced at the schema level but a valid Bearer token is recommended
        for production integrations.
      operationId: getLayerProperties
      parameters:
        - name: latitude
          in: query
          required: true
          description: Latitude of the location.
          schema:
            type: number
        - name: longitude
          in: query
          required: true
          description: Longitude of the location.
          schema:
            type: number
        - name: layer
          in: query
          required: true
          description: Layer type.
          schema:
            type: string
            enum:
              - building_blocks
              - country
              - floods
              - parcels
              - seismic_zones
              - wildfire
      responses:
        '200':
          description: Layer data for the given location.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````