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
| Name | Type | Required | Description |
|---|---|---|---|
geoid | string | yes | ZIP code prefixed with “ZI” (e.g., “ZI80202”) |
interval | string | yes | Time interval: monthly, quarterly, or yearly |
startYear | string | yes | Start year (e.g., “2020”) |
endYear | string | yes | End year (e.g., “2024”) |
_apiKey | string | yes | ATTOM 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.