# PropPulse Neighborhood Intelligence

> PropPulse Neighborhood Intelligence 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 neighborhood intelligence for a given property location, including school ratings, safety scores, walkability metrics, and investment outlook

## Facts

- Endpoint: GET https://proppulse-gules.vercel.app/api/prop/neighborhood
- 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-neighborhood-intelligence-a069d090
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u7lrnqZXX2Kxsn1Y4pbOg

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-neighborhood-intelligence-a069d090
```

Example prompt: Can you pull up the PropPulse neighborhood intelligence for 4521 Oak Street, Austin TX — I want to see school ratings, safety scores, walkability, and whether it looks like a solid investment area?

## When to prefer this

Use this endpoint when a user wants a holistic neighborhood profile for a specific property location — covering schools, safety, walkability, and investment outlook in a single call. Prefer this over general mapping APIs or individual data sources when the use case is real estate due diligence, homebuying research, or investment screening where multiple neighborhood factors need to be evaluated together.

## Known failure modes

- Address or location not found — returns 404 or empty result
- Neighborhood data unavailable for rural or very new developments
- Payment not processed — returns 402 Payment Required
- Invalid address format causing lookup failure
- Rate limiting or quota exceeded for high-volume requests

## How this service works

Neighborhood report, school ratings, crime and safety, and walkability score: walk score, school rating, crime index, median income, price appreciation, and area vibe with investment outlook for any address or ZIP. For homebuyer and relocation agents.

## Output

Returns a structured neighborhood report including school quality ratings (public and private), safety and crime indices, walkability and transit scores, and an investment outlook assessment indicating appreciation potential and market conditions for the surrounding area.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar | ko"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "location": {
       "type": "string",
       "description": "Austin, TX | Brooklyn, NY | Manchester | Bengaluru"
      },
      "priority": {
       "type": "string",
       "description": "schools | safety | walkability | commute | appreciation | young-families | retirees"
      }
     }
    }
   },
   "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": {
  "vibe": "hip, walkable, young professional",
  "walk_score": 72,
  "crime_index": 28,
  "neighborhood": "South Congress, Austin",
  "median_income": 78000,
  "school_rating": 7.2,
  "price_appreciation_5yr_pct": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-neighborhood-intelligence-a069d090/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)
