# PropPulse Neighborhood Report & Location Intelligence

> PropPulse Neighborhood Report & Location Intelligence 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-16).

Returns a comprehensive neighborhood profile for any global location including walk score, school ratings, crime index, median income, price appreciation, area vibe, and investment outlook.

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/neighborhood
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-neighborhood-report-location-intelligence-df28167f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Wf_blCLCha4l0eQOGzpe

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-report-location-intelligence-df28167f
```

Example prompt: Can you pull the full neighborhood report for 45 Maple Street, Austin TX — I need the walk score, school ratings, crime index, area vibe, and investment outlook before we make an offer?

## When to prefer this

Use this endpoint when you need a holistic neighborhood intelligence report combining livability, safety, education quality, walkability, and real estate investment signals in a single call — especially for homebuyer research, relocation decisions, or investment due diligence. Prefer this over general mapping APIs when you specifically need crime index, school ratings, area vibe, and price appreciation together for a single location.

## Known failure modes

- Location not recognized or ambiguous — returns error asking for more specific address
- No neighborhood data available for very rural or unsupported international locations
- Missing required location parameter — returns 400 bad request
- Rate limiting or payment failure for x402 protocol — returns 402 payment required
- Partial data returned for locations with limited coverage (e.g. some international areas may lack school or crime data)

## 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 global location. For homebuyer and relocation agents.

## Output

Returns a structured neighborhood profile including walk score (walkability), school rating, crime index, median household income, historical price appreciation, area vibe description, and investment outlook for the queried global location.

## 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-report-location-intelligence-df28167f/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)
