Skip to main content
POST
/
api
/
trulia
/
properties
/trulia/properties
curl --request POST \
  --url https://api.anysite.io/api/trulia/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@trulia_property",
    "address": "<string>",
    "street_address": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip_code": "<string>",
    "neighborhood": "<string>",
    "latitude": 123,
    "longitude": 123,
    "status": "<string>",
    "is_active_for_sale": true,
    "is_active_for_rent": true,
    "is_off_market": true,
    "is_foreclosure": true,
    "property_type": "<string>",
    "price": 123,
    "formatted_price": "<string>",
    "price_type": "<string>",
    "bedroom_count": 123,
    "bathroom_count": 123,
    "floor_space_sqft": 123,
    "lot_size": "<string>",
    "description": "<string>",
    "image": "<string>",
    "images": [],
    "photo_count": 123,
    "mls_number": "<string>",
    "listing_agent": "<string>",
    "listing_broker": "<string>",
    "listed_at": "<string>",
    "home_details": [],
    "price_history": [],
    "tax_assessment": {
      "@type": "@trulia_property_tax_assessment",
      "year": 123,
      "tax_value": 123,
      "total_assessment": 123
    },
    "market_trends": {
      "@type": "@trulia_property_market_trends",
      "market_condition": "<string>",
      "avg_sale_price": 123,
      "sale_to_list_price": "<string>",
      "price_per_sqft": "<string>",
      "available_listings": "<string>",
      "last_updated": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Trulia property numeric ID or a property URL containing it

Minimum string length: 1
Examples:

"119623659"

"https://www.trulia.com/home/2001-faro-dr-4-austin-tx-78741-119623659"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@trulia_property
address
string | null
street_address
string | null
city
string | null
state
string | null
zip_code
string | null
neighborhood
string | null
latitude
number | null
longitude
number | null
status
string | null
is_active_for_sale
boolean | null
is_active_for_rent
boolean | null
is_off_market
boolean | null
is_foreclosure
boolean | null
property_type
string | null
price
number | null
formatted_price
string | null
price_type
string | null
bedroom_count
number | null
bathroom_count
number | null
floor_space_sqft
number | null
lot_size
string | null
description
string | null
image
string | null
images
string[]
photo_count
integer | null
mls_number
string | null
listing_agent
string | null
listing_broker
string | null
listed_at
string | null
home_details
TruliaPropertyFeatureCategory · object[]
price_history
TruliaPropertyPriceHistoryEvent · object[]
tax_assessment
TruliaPropertyTaxAssessment · object