Skip to main content
POST

Property Lookup

Look up property details and owner contact information by providing a street address.
This endpoint requires an API key. See Authentication for details.

Request

You can provide the address in two ways: Option 1: Single-line address
string
Full address as a single line (e.g., “123 Main St, Austin, TX 78701”). If provided, the individual street, city, state, and zip fields are ignored.
Option 2: Separate fields
string
Street address including house number (e.g., “123 Main St”). Required if address is not provided.
string
City name. At least one of city, state, or zip is required when using separate fields.
string
Two-letter state abbreviation (e.g., “TX”). At least one of city, state, or zip is required when using separate fields.
string
ZIP code. At least one of city, state, or zip is required when using separate fields.

Response

boolean
Whether the request was successful
object
Property and owner data
object
Included when approaching monthly limit (90%+ usage)
integer
Current usage count for billing period
integer
Monthly request limit
string
Warning message about approaching limit

Examples

Single-Line Address

Success Response

Error Responses

Missing Street Address (400)
Property Not Found (404)
Rate Limit Exceeded (429)

Response Headers

All successful responses include rate limit headers:

Authorizations

X-API-Key
string
header
required

API key for authentication (format: dm_live_xxxxxxxx)

Body

application/json
address
string

Full address as a single line. If provided, street/city/state/zip fields are ignored.

Example:

"123 Main St, Austin, TX 78701"

street
string

Street address including house number. Required if 'address' is not provided.

Example:

"123 Main St"

city
string

City name

Example:

"Austin"

state
string

Two-letter state abbreviation

Required string length: 2
Example:

"TX"

zip
string

ZIP code

Example:

"78701"

Response

Successful property lookup

success
boolean
Example:

true

data
object
usage
object

Included when at 90%+ of monthly limit