attom_property_detail

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

“Property details for [address]” / “specs of [house]” / “how many bedrooms / bathrooms” / “year built” / “square footage” / “lot size” — full property characteristics for a US residential or commercial address. Returns lot size, square footage, bedrooms, bathrooms, year built, construction type, and heating/cooling systems from ATTOM Data Solutions (the premium US real estate dataset). Use whenever an agent needs structured property attributes by address.

Parameters

NameTypeRequiredDescription
address1stringyesStreet address (e.g., “123 Main St”)
address2stringyesCity, state ZIP (e.g., “Denver, CO 80202”)
_apiKeystringyesATTOM API key

Example call

Arguments

{
  "address1": "123 Main St",
  "address2": "Denver, CO 80202",
  "_apiKey": "your-attom-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/attom/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"attom_property_detail","arguments":{"address1":"123 Main St","address2":"Denver, CO 80202","_apiKey":"your-attom-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('attom_property_detail', {
  "address1": "123 Main St",
  "address2": "Denver, CO 80202",
  "_apiKey": "your-attom-api-key"
});

More examples

{
  "address1": "456 Oak Avenue",
  "address2": "Austin, TX 78701",
  "_apiKey": "your-attom-api-key"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Property detail response from ATTOM API"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 24, 2026