# PropPulse Property Valuation

> PropPulse Property Valuation is a paid API for AI agents from proppulse-gules.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns an AVM (Automated Valuation Model) estimate, comparable sales data, and negotiation intelligence for a given property

## Facts

- Endpoint: GET https://proppulse-gules.vercel.app/api/prop/valuate
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-property-valuation-fe866f48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZEGxO9X5perW68hAk2FwO

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-fe866f48
```

Example prompt: What's the PropPulse AVM estimate for 123 Maple Street, Austin TX 78701 — and pull the comparable sales and negotiation intelligence so I know if the asking price is reasonable?

## When to prefer this

Use this endpoint when an agent needs a quick, data-backed property valuation with comparable sales and negotiation context for a specific address — particularly useful during home buying, selling, or investment analysis when the user wants to know fair market value and how to negotiate effectively.

## Known failure modes

- Property address not found or not recognized — returns error or null valuation
- Insufficient comparable sales data in the area — low-confidence AVM estimate
- Invalid or malformed address input — returns validation error
- Payment of 0.1 USDC not processed — returns 402 Payment Required
- Property in a rural or sparse market — comps may be limited or unavailable

## How this service works

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

## Output

Returns an automated valuation model (AVM) estimated property value, a set of comparable recent sales in the area, and negotiation intelligence such as whether the property is priced above or below market, giving the agent data to advise on offer strategy.

## 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-fe866f48/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proppulse-gules.vercel.app](https://www.zero.xyz/host/proppulse-gules.vercel.app/llms.txt)
