realestateapi_property_detail

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

Get full property detail by id or address — returns owner, estimated value, last sale, characteristics (beds/baths/sqft/year/lot), and mortgage. Example: realestateapi_property_detail({ address: “123 Main St, Austin, TX 78701”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
idstringnoRealEstateAPI property id (from a search result)
addressstringnoFull property address (use if you have no id)
_apiKeystringyesRealEstateAPI key from realestateapi.com

Example call

Arguments

{
  "address": "123 Main St, Austin, TX 78701",
  "_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_detail","arguments":{"address":"123 Main St, Austin, TX 78701","_apiKey":"your-realestateapi-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('realestateapi_property_detail', {
  "address": "123 Main St, Austin, TX 78701",
  "_apiKey": "your-realestateapi-api-key"
});

More examples

{
  "id": "prop_abc123def456",
  "_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