Skip to main content
GET
/
api
/
properties
List properties
curl --request GET \
  --url https://pandora.ask-wire.com/api/properties/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": 1,
      "municipality": {
        "id": 1,
        "created_at": "2026-05-14T17:34:51.578Z",
        "modified_at": "2026-05-14T17:34:51.578Z",
        "country": "greece",
        "parent_id": 100,
        "name_gr": "Αθήνα",
        "name_en": "Athens",
        "level": 1,
        "code": "ATH",
        "parent_code": "GR"
      },
      "municipal_unit": {
        "id": 2,
        "created_at": "2026-05-14T17:34:51.578Z",
        "modified_at": "2026-05-14T17:34:51.578Z",
        "country": "greece",
        "parent_id": 101,
        "name_gr": "Κέντρο",
        "name_en": "Center",
        "level": 2,
        "code": "CTR",
        "parent_code": "ATH"
      },
      "seller": {
        "id": 5,
        "display_name": "Example Realty"
      },
      "images": "https://example.com/image.jpg",
      "created_at": "2026-05-14T17:34:51.578Z",
      "modified_at": "2026-05-14T17:34:51.578Z",
      "polymorphic_type": "listing",
      "country": "greece",
      "listing_type": "sale",
      "source_type": "broker",
      "source": "spitogatos",
      "price": 250000,
      "url": "https://example.com/property/1",
      "reference_id": "PROP-001",
      "description": "Modern apartment in Athens center",
      "address": "Athens, Greece",
      "latitude": 37.9838,
      "longitude": 23.7275,
      "coordinates": "POINT(23.7275 37.9838)",
      "build_area": 120,
      "land_area": 150,
      "uncovered_veranda_area": 10,
      "covered_veranda_area": 20,
      "price_per_sqm": 2083,
      "building_floor_count": 5,
      "construction_year": 2010,
      "renovated": true,
      "renovation_year": 2022,
      "floor_number": 3,
      "garage": true,
      "garden": false,
      "heating_type": "autonomous",
      "number_of_bedrooms": 3,
      "number_of_bathrooms": 2,
      "property_type": "apartment",
      "swimming_pool": false,
      "view": "city",
      "energy_class": "A",
      "is_live": true,
      "is_modified": false,
      "is_public": true,
      "is_manually_updated": false,
      "is_ai_updated": true,
      "is_ai_processed": true,
      "is_ai_mismatched": false,
      "outlier": false,
      "comparable": true,
      "last_seen_at": "2026-05-14T17:34:51.578Z",
      "first_seen_at": "2026-05-14T17:34:51.578Z",
      "delisted_at": null,
      "is_duplicated": false,
      "master_property_id": 1,
      "is_deduplication_processed": true,
      "is_master_property": true,
      "is_leader": true,
      "polymorphic_ctype": 12,
      "regional_unit": 3,
      "region": 1,
      "neighborhood": 8,
      "tags": [
        1,
        2,
        3
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.ask-wire.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1

Page number

page_size
integer
default:100

Number of results per page (max 300)

Required range: x <= 300
polymorphic_type
enum<string>

Restrict results by type

Available options:
listing,
foreclosure
listing_type
enum<string>
Available options:
rent,
sale,
sold
price_min
number
price_max
number
bedrooms_min
integer
bedrooms_max
integer
number_of_bathrooms
integer
property_type
string[]

Comma-separated property types

municipality
integer[]

Comma-separated municipality IDs

region
integer[]

Comma-separated region IDs

lat
number

Latitude center point

lng
number

Longitude center point

radius_km
number

Search radius in kilometers

Response

Paginated property results

count
integer
next
string<uri> | null
previous
string<uri> | null
results
object[]