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

# Property Search

`GET /public/property/search/`

Search and paginate through properties across states, counties, or cities. The "state" field is required. For best performance and lowest latency, include "state", "county", and "address" — ZIP codes and city names vary across data sources. By default, broad searches exclude parcels without assigned addresses; set "includeUnassignedAddress=true" to include them. **Pagination:** use the "cursor" parameter for efficient pagination at any depth — see the [Pagination guide](/api-reference/pagination) for full details. The legacy "offset" parameter still works but is deprecated.

## Query parameters

- `state` string, required
- `zipCode` string
- `county` string
- `city` string
- `transferedSince` string
- `useCode` integer
- `address` string
- `unitNumberStripped` string
- `includeUnassignedAddress` boolean
- `limit` integer
- `cursor` string
- `offset` integer
- `residential` boolean

## Response `200`

Properties found successfully

- object
  - `properties` object[] — Array of property features found.
  - `metadata` object
    - `limit` integer — Limit applied
    - `count` integer — Number of records returned in this page
    - `nextCursor` string, nullable — Cursor pagination only. Pass this value as "cursor" on the next request to retrieve the next page. Null when there are no more results.
    - `offset` integer — Offset pagination only (deprecated). Echoes the offset value used for this request.
    - `deprecationNotice` string — Present only when a deprecated parameter (e.g., "offset") was used. Human-readable migration message.

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