realestateapi_property_search

Pack: realestateapi · Endpoint: https://gateway.pipeworx.io/realestateapi/mcp

Search properties by city/state/filters (off-market, absentee-owner, value range) — returns matching properties with address, owner, beds/baths, and estimated value. Example: realestateapi_property_search({ city: “Austin”, state: “TX”, absentee_owner: true, value_max: 400000, size: 25, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
citystringnoCity name, e.g. “Austin”
statestringnoTwo-letter state code, e.g. “TX”
zipstringnoZIP code
sizeintegernoMax results to return (default 10, max 50)
property_typestringnoOne of SFR, MFR, CONDO, LAND, MOBILE, OTHER
beds_minintegernoMinimum bedrooms
baths_minintegernoMinimum bathrooms
absentee_ownerbooleannoOnly properties whose owner lives elsewhere
value_minintegernoMinimum estimated value (USD)
value_maxintegernoMaximum estimated value (USD)
_apiKeystringyesRealEstateAPI key from realestateapi.com

Example call

Arguments

{
  "city": "Austin",
  "state": "TX",
  "absentee_owner": true,
  "value_max": 400000,
  "size": 25,
  "_apiKey": "your-realestateapi-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/realestateapi/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"realestateapi_property_search","arguments":{"city":"Austin","state":"TX","absentee_owner":true,"value_max":400000,"size":25,"_apiKey":"your-realestateapi-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('realestateapi_property_search', {
  "city": "Austin",
  "state": "TX",
  "absentee_owner": true,
  "value_max": 400000,
  "size": 25,
  "_apiKey": "your-realestateapi-api-key"
});

More examples

{
  "city": "Denver",
  "state": "CO",
  "property_type": "SFR",
  "beds_min": 3,
  "baths_min": 2,
  "value_min": 350000,
  "value_max": 600000,
  "_apiKey": "your-realestateapi-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "realestateapi": {
      "url": "https://gateway.pipeworx.io/realestateapi/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026