---
title: "Location Search"
method: GET
path: "/public/property/location/"
tags: ["Property"]
---

# Location Search

`GET /public/property/location/`

Search by latitude/longitude with an optional radius in miles. By default, nearby searches exclude parcels without assigned addresses unless you explicitly set `includeUnassignedAddress=true`.

## Query parameters

- `longitude` number, float, required
- `latitude` number, float, required
- `radius` number, float
- `limit` integer
- `offset` integer
- `residential` boolean
- `includeUnassignedAddress` boolean

## Response `200`

Properties found successfully

- object
  - `properties` object[] — Array of properties found within the specified radius.
  - `metadata` object
    - `limit` integer — Limit value applied to the request
    - `offset` integer — Number of records skipped
    - `count` integer — Number of records found
    - `searchCenter` object
      - `longitude` number — The longitude of the search center point
      - `latitude` number — The latitude of the search center point
    - `radiusMiles` number — The radius in miles used for the search
    - `includeUnassignedAddress` boolean — Whether parcels without assigned addresses were included in the search

## Other responses

- `400` — Bad Request - Missing or invalid parameters
- `401` — Unauthorized - Missing or invalid API key
- `403` — Forbidden - Usage limit exceeded
- `404` — Not Found - No properties found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/realie/apis/property-data-api.md) · [All operations](https://skmtc.dev/realie/apis/property-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/realie/property-data-api/revisions/1ee0fd8b76f9/schema)
