attom_sales_trend

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

Analyze market sales trends by ZIP code. Returns average/median sale price, sales volume, and price changes over time.

Parameters

NameTypeRequiredDescription
geoidstringyesZIP code prefixed with “ZI” (e.g., “ZI80202”)
intervalstringyesTime interval: monthly, quarterly, or yearly
startYearstringyesStart year (e.g., “2020”)
endYearstringyesEnd year (e.g., “2024”)
_apiKeystringyesATTOM API key

Example call

Arguments

{
  "geoid": "ZI80202",
  "interval": "monthly",
  "startYear": "2020",
  "endYear": "2024",
  "_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_trend","arguments":{"geoid":"ZI80202","interval":"monthly","startYear":"2020","endYear":"2024","_apiKey":"your-attom-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('attom_sales_trend', {
  "geoid": "ZI80202",
  "interval": "monthly",
  "startYear": "2020",
  "endYear": "2024",
  "_apiKey": "your-attom-api-key"
});

More examples

{
  "geoid": "ZI10001",
  "interval": "yearly",
  "startYear": "2022",
  "endYear": "2024",
  "_apiKey": "your-attom-api-key"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Market sales trend 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