attom_sales_history

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

Get past sales for a property. Returns sale dates, prices, deed types, and buyer/seller details from recent transactions.

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_sales_history","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_sales_history', {
  "address1": "123 Main St",
  "address2": "Denver, CO 80202",
  "_apiKey": "your-attom-api-key"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Sales history 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 May 9, 2026