# PropPulse First-Time Homebuyer Assistance Finder

> PropPulse First-Time Homebuyer Assistance Finder 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-15).

Identifies first-time homebuyer assistance programs (grants, tax relief, savings schemes) by country and returns eligible loan types, max home price, estimated closing costs, and a step-by-step process guide.

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/first-buyer
- 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-first-time-homebuyer-assistance-finder-b1fa33a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bBYZWItSSgwq6xH7PqC9y

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-first-time-homebuyer-assistance-finder-b1fa33a9
```

Example prompt: I'm a first-time homebuyer in Texas looking at homes around $350,000 — can you find all the down payment assistance grants and eligible loan types I qualify for, give me a closing cost estimate, and walk me through the buying process step by step?

## When to prefer this

Choose this endpoint when a user is explicitly a first-time homebuyer seeking assistance programs, grants, or tax relief schemes in the US, UK, Canada, or Australia, or wants a comprehensive onboarding guide including loan eligibility, closing costs, and step-by-step process — rather than general mortgage calculations, property valuations, or investment analysis.

## Known failure modes

- Unsupported country or region returns a no-scheme/honest note response rather than an error
- Missing required location or income parameters may result in generic or incomplete program matches
- Program data may be outdated if government schemes change between API updates
- Edge-case income or purchase price combinations near eligibility thresholds may produce borderline results

## How this service works

First-time homebuyer assistance finder: DPA grants (US), Stamp Duty relief/LISA (UK), FHSA/RRSP HBP (CA), FHOG/FHSSS (AU), honest no-scheme note (DE), eligible loan types, max home price, closing-cost estimate, step-by-step process. For homebuyer and real-estate agents.

## Output

Returns a structured response listing applicable first-time homebuyer assistance programs (e.g. DPA grants for US states, Stamp Duty relief and LISA for UK, FHSA/RRSP HBP for Canada, FHOG/FHSSS for Australia, or an honest no-scheme note for Germany), eligible loan types, maximum home price guidance, estimated closing costs, and a step-by-step homebuying process tailored to the buyer's country and situation.

## 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": {
      "zip": {
       "type": "string",
       "description": "legacy alias for location, implies country=US"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar"
      },
      "credit": {
       "type": "string"
      },
      "income": {
       "type": "string"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "savings": {
       "type": "string"
      },
      "location": {
       "type": "string",
       "description": "Denver, CO | Manchester | Toronto"
      }
     }
    }
   },
   "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": {
  "max_home_price": 380000,
  "down_payment_options": [
   {
    "down": 19000,
    "program": "Conventional 5% down"
   },
   {
    "down": 13300,
    "program": "FHA 3.5% down"
   }
  ],
  "first_buyer_programs": [
   "Colorado CHFA — 3% down + $25K grant"
  ],
  "closing_costs_estimate": 9500
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-first-time-homebuyer-assistance-finder-b1fa33a9/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)
