altos_pending_sales

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

Find properties under contract in a region (e.g., “Miami, FL”). Returns address, price, beds, baths, and days pending.

Parameters

NameTypeRequiredDescription
_altosKeystringyesAltos Research API key
regionstringyesRegion code (e.g., “ca_los-angeles”, “ca_94105”)
datestringnoDate (must be a Friday, YYYY-MM-DD). Defaults to most recent Friday.
limitnumbernoMax rows to return (default 100)

Example call

Arguments

{
  "_altosKey": "your-altos-api-key",
  "region": "ca_los-angeles"
}

curl

curl -X POST https://gateway.pipeworx.io/altos/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"altos_pending_sales","arguments":{"_altosKey":"your-altos-api-key","region":"ca_los-angeles"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('altos_pending_sales', {
  "_altosKey": "your-altos-api-key",
  "region": "ca_los-angeles"
});

More examples

{
  "_altosKey": "your-altos-api-key",
  "region": "ca_94105",
  "limit": 25
}

Response shape

Always returns: region, date, total_available, returned, pendings

FieldTypeDescription
regionstringRegion code queried
datestringFriday date (YYYY-MM-DD) for snapshot
total_availablenumberTotal pending sales in region
returnednumberNumber of pending sales returned
pendingsarrayProperties under contract
Full JSON Schema
{
  "type": "object",
  "properties": {
    "region": {
      "type": "string",
      "description": "Region code queried"
    },
    "date": {
      "type": "string",
      "description": "Friday date (YYYY-MM-DD) for snapshot"
    },
    "total_available": {
      "type": "number",
      "description": "Total pending sales in region"
    },
    "returned": {
      "type": "number",
      "description": "Number of pending sales returned"
    },
    "pendings": {
      "type": "array",
      "description": "Properties under contract",
      "items": {
        "type": "object",
        "description": "Raw CSV row data as key-value pairs"
      }
    }
  },
  "required": [
    "region",
    "date",
    "total_available",
    "returned",
    "pendings"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026