realestateapi_skip_trace
Pack: realestateapi · Endpoint: https://gateway.pipeworx.io/realestateapi/mcp
Skip-trace owner contact info for an address — returns the owner name plus phone numbers and emails. Regulated PII: pure passthrough, nothing is stored. Example: realestateapi_skip_trace({ address: “123 Main St, Austin, TX 78701”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | Full property/mailing address to trace |
first_name | string | no | Owner first name (optional, improves match) |
last_name | string | no | Owner last name (optional, improves match) |
_apiKey | string | yes | RealEstateAPI 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_skip_trace","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_skip_trace', {
"address": "123 Main St, Austin, TX 78701",
"_apiKey": "your-realestateapi-api-key"
});
More examples
{
"address": "456 Oak Ave, Denver, CO 80202",
"first_name": "John",
"last_name": "Smith",
"_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.