batchdata_skip_trace

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

Skip-trace an address (optionally with an owner name) to resolve owner contact info — phone numbers and emails. WARNING: skip-trace results carry DPPA/GLBA permissible-use obligations; the caller is solely responsible for lawful use of the returned contact data. Requires a BatchData API token via _apiKey. Example: batchdata_skip_trace({ street: “1011 Rosegold St”, city: “Franklin Square”, state: “NY”, zip: “11010”, _apiKey: “your-token” })

Parameters

NameTypeRequiredDescription
firststringnoOptional owner first name to improve match accuracy.
laststringnoOptional owner last name to improve match accuracy.
requestsarraynoOptional: batch of skip-trace requests. Each item is { propertyAddress: { street, city, state, zip }, name?: { first, last } }. If omitted, the top-level fields are used as a single request.
propertyAddressunknownno
itemsobjectno
_apiKeystringyesBatchData API token (create one at https://app.batchdata.com)

Example call

Arguments

{
  "street": "1011 Rosegold St",
  "city": "Franklin Square",
  "state": "NY",
  "zip": "11010",
  "_apiKey": "your-batchdata-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/batchdata/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"batchdata_skip_trace","arguments":{"street":"1011 Rosegold St","city":"Franklin Square","state":"NY","zip":"11010","_apiKey":"your-batchdata-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('batchdata_skip_trace', {
  "street": "1011 Rosegold St",
  "city": "Franklin Square",
  "state": "NY",
  "zip": "11010",
  "_apiKey": "your-batchdata-api-key"
});

More examples

{
  "street": "789 Elm Dr",
  "city": "Denver",
  "state": "CO",
  "zip": "80202",
  "first": "John",
  "last": "Smith",
  "_apiKey": "your-batchdata-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026