GET
/
public
/
property
/
search
/
Property Search
curl --request GET \
  --url https://app.realie.ai/api/public/property/search/ \
  --header 'Authorization: <api-key>'
{
  "properties": [
    {}
  ],
  "metadata": {
    "limit": 123,
    "offset": 123,
    "count": 123
  }
}

Authorizations

Authorization
string
header
required

Provide your API key directly in the header.

Query Parameters

state
string
required

Two-letter state (required field) (e.g., "CA")

zipCode
string

ZIP code of the property (optional field).

county
string

County where the property is located (optional field).

city
string

City where the property is located (optional field).

transferedSince
string

Days to look back for transfers (e.g., "30") (optional field).

useCode
integer

Numerical use code (e.g., 1002, 1001) (optional field).

address
string

The street address only (e.g. “123 Main Street”). Do not include city, state, or ZIP in this field. (optional field)

unitNumberStripped
string

The unit number of the property (optional field). Do not include the type of unit. (e.g. “APT 2B” would just be “2B”)

limit
integer
default:10

Maximum number of results to return. Defaults to 10, maximum is 100.

Required range: 1 <= x <= 100
offset
integer
default:0

Number of records to skip. Defaults to 0.

Required range: x >= 0
residential
boolean

If true, only residential properties; if false, only non-residential (optional field).

Response

Properties found successfully

properties
object[]

Array of property features found.

metadata
object