# PropPulse UK Council-Tax Banding Challenge Check

> PropPulse UK Council-Tax Banding Challenge Check is a paid API for AI agents from proppulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyses a UK property's council-tax band against neighbour clusters, selects the correct statutory challenge route, and gates on the band-can-go-up risk — using live VOA/SAA data without LLM hallucination.

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/council-tax
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-uk-council-tax-banding-challenge-check-5963d988
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uunwjWDeaeCkKl0Uv-h9S

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-uk-council-tax-banding-challenge-check-5963d988
```

Example prompt: My house in Leeds is in council tax band D but several of my neighbours with nearly identical semi-detached houses are in band C — can you check whether I have a valid challenge, which route to use (formal or informal), and whether there's any risk my band could go up if I appeal?

## When to prefer this

Choose this endpoint when you need a structured, rules-based council-tax banding challenge assessment for a UK residential property, specifically when you require neighbour-cluster comparison against live official VOA/SAA data, correct statutory route selection across England/Wales/Scotland jurisdictions, and the mandatory band-increase risk gate — rather than a generic property-tax advisory or an LLM-generated estimate.

## Known failure modes

- Property address or postcode not found in VOA/SAA database — returns no-match error
- Insufficient neighbour data in the cluster for a meaningful comparison — returns low-confidence or no-result response
- Ambiguous jurisdiction (e.g. cross-border postcode) — may return an error or require explicit country parameter
- Network or upstream VOA/SAA lookup failure — returns service-unavailable error
- Invalid or malformed address input — returns validation error

## How this service works

UK council-tax banding challenge check — neighbor-band cluster analysis against the free official VOA/SAA lookups, statutory route selection (formal proposal vs informal review, England/Wales/Scotland variants incl. the post-2023 Local Taxation Chamber), verified timelines (4/12-month decisions, 3/4-month appeals), evidence rules (the VOA rejects house-price-index data — verified), and the mandatory band-can-go-UP risk gate. Refunds backdate. No LLM.

## Output

Returns a neighbour-band cluster analysis against official VOA/SAA data, a recommended statutory challenge route (formal proposal or informal review) with the correct jurisdiction variant (England/Wales/Scotland including post-2023 Local Taxation Chamber), verified decision and appeal timelines, applicable evidence rules (including the note that VOA rejects house-price-index data), a mandatory band-can-go-up risk flag, and an estimate of how far back any refund would be backdated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "country",
  "current_band"
 ],
 "properties": {
  "country": {
   "type": "string",
   "description": "england | wales | scotland"
  },
  "current_band": {
   "type": "string",
   "description": "Your band from gov.uk/council-tax-bands (A–H, +I in Wales)"
  },
  "neighbor_bands": {
   "type": "string",
   "description": "Comparable neighbors' bands, comma-separated (3–5, same street/type/size)"
  },
  "risk_acknowledged": {
   "type": "string",
   "description": "true = you accept the VOA warning that bands can go UP (required for letters)"
  },
  "became_taxpayer_date": {
   "type": "string",
   "description": "When you became liable — within 6 months unlocks the formal statutory proposal"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-uk-council-tax-banding-challenge-check-5963d988/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)
