Detailed Property Information
Get comprehensive details about a specific property including ownership, valuation, characteristics, sales history, and financial indicators. Can search by ID, address, or APN.
Body
Required
Property detail request
-
Full property address
Minimum length is
5
. -
House number component
-
Unit number component
-
Street name component
-
City name
-
State abbreviation
Format should match the following pattern:
^[A-Z]{2}$
. -
ZIP code
Format should match the following pattern:
^[0-9]{5}(-[0-9]{4})?$
. -
County name
-
Assessor's Parcel Number
-
Require exact address match
Default value is
true
. -
Include prior owner information
Default value is
false
. -
Include comparable properties
Default value is
false
. -
Property latitude
Minimum value is
-90
, maximum value is90
. -
Property longitude
Minimum value is
-180
, maximum value is180
.
curl \
--request POST 'https://api.realestateapi.com/v2/PropertyDetail' \
--header "Content-Type: application/json" \
--header "x-api-key: string" \
--header "x-user-id: string" \
--data '{"id":"148046016"}'
{
"id": "148046016"
}
{
"address": "2025 Peachtree Rd NE, Atlanta GA 30309"
}
{
"zip": "30309",
"city": "Atlanta",
"house": "2025",
"state": "GA",
"street": "Peachtree Rd NE"
}
{
"apn": "170110LL0333",
"state": "GA",
"county": "Fulton"
}
{
"input": {},
"data": {
"id": "string",
"address": {},
"location": {},
"characteristics": {},
"valuation": {},
"ownership": {},
"sales": {},
"features": {}
},
"statusCode": 42,
"live": true
}
{
"error": "Bad Request",
"message": "Invalid input parameters",
"statusCode": 400,
"details": {}
}
{
"error": "Unauthorized",
"message": "Invalid or missing API key",
"statusCode": 401
}
{
"error": "Not Found",
"message": "Property not found",
"statusCode": 404
}
{
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"statusCode": 500
}