Skip to main content

Trulia Property Search

Search real estate properties on Trulia by location, price, bedrooms, and property type.

Overview

Domain-specific real estate search tool. Uses the RapidAPI Trulia endpoint for structured data, with Firecrawl scrape as a fallback when no RapidAPI key is available.

Package: @framers/agentos-ext-trulia-search

Environment Variables

VariableRequiredDescription
TRULIA_RAPIDAPI_KEYNoRapidAPI key for structured data
FIRECRAWL_API_KEYNoFirecrawl key for scrape fallback

At least one is needed for results.

Tool Schema

ParameterTypeRequiredDescription
locationstringYesCity/state or zip code
propertyTypestringNohouse, apartment, condo, townhouse, land
minPricenumberNoMinimum price
maxPricenumberNoMaximum price
bedroomsnumberNoMinimum bedrooms
bathroomsnumberNoMinimum bathrooms
maxResultsnumberNoMax results (default: 20)

Example

User: "Find 3-bedroom houses in Austin, TX under $400k"
Agent: trulia_search({
location: "Austin, TX",
propertyType: "house",
bedrooms: 3,
maxPrice: 400000
})
Result: [
{ address: "123 Main St", price: 350000, beds: 3, baths: 2, sqft: 1500 },
{ address: "456 Oak Ave", price: 390000, beds: 3, baths: 2.5, sqft: 1800 }
]