# PropPulse Property Valuation AVM

> PropPulse Property Valuation AVM is a paid API for AI agents from proppulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns an automated property valuation (AVM) for any address worldwide, including estimated value with confidence range, price per sqft/sqm, comparable sales, days-to-sell estimate, and negotiation intelligence.

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/valuate
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-property-valuation-avm-5ccdf9cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Br3sDMPJXuMZJUMhA7uaa

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability proppulse-property-valuation-avm-5ccdf9cc
```

Example prompt: What's the estimated value of 42 Maple Street, Austin TX 78701 — give me the AVM estimate with confidence range, price per square foot, comparable sales, and how many days it would likely take to sell?

## When to prefer this

Use this endpoint when you need a quick, structured AVM-based valuation for a specific property address anywhere in the world, especially when you want negotiation intelligence and days-to-sell data alongside the estimate. Prefer this over generic housing market trend endpoints when the query is about a single property rather than a market area.

## Known failure modes

- Address not recognized or not found — returns error indicating invalid or ambiguous address
- Property has insufficient comparable data — returns low-confidence estimate or no result
- Unsupported region or country — may return error for areas with sparse data
- Malformed address parameter — returns 400-level validation error
- Rate limiting or payment failure — returns 402 or 429 error

## How this service works

Property valuation and home value estimate (AVM): estimated value with confidence range, price per square foot/meter, comparable sales, days-to-sell estimate, and negotiation intelligence for any address worldwide. For homebuyer, seller, and real-estate agents.

## Output

Returns an automated valuation estimate with a confidence range (low/high), price per square foot and per square meter, a list of comparable recent sales in the area, an estimated days-to-sell figure, and negotiation intelligence such as recommended offer range or leverage indicators for the property.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "beds": {
       "type": "string"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar"
      },
      "sqft": {
       "type": "string"
      },
      "address": {
       "type": "string",
       "description": "123 Main St, Austin TX | 12 Baker St, London"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "price_per_sqft": 262,
  "estimated_value": 485000,
  "comparable_sales": [
   {
    "sold": "2026-04-12",
    "price": 478000,
    "address": "118 Oak Ave"
   }
  ],
  "confidence_range": "452000-518000",
  "days_to_sell_estimate": 22
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-property-valuation-avm-5ccdf9cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proppulse.theaslangroupllc.com](https://www.zero.xyz/host/proppulse.theaslangroupllc.com/llms.txt)
