# PropPulse First-Time Homebuyer Guide

> PropPulse First-Time Homebuyer Guide 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 a comprehensive first-time homebuyer guide covering assistance programs, loan types, and step-by-step purchase process for a specified state

## Facts

- Endpoint: GET https://proppulse-gules.vercel.app/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-guide-40a19071
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6CzctyP0LeAz9C8Zz17oS

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-guide-40a19071
```

Example prompt: I'm thinking about buying my first home in Colorado — can you pull up the PropPulse first-time homebuyer guide for Colorado and show me all the assistance programs, loan types available, and the step-by-step process I need to follow?

## When to prefer this

Use this endpoint when a user explicitly identifies as a first-time homebuyer and needs guidance on programs, loan eligibility, and the purchase process for a specific U.S. state. Prefer this over general mortgage or affordability endpoints when the user needs assistance programs and process guidance rather than rate quotes or property valuations.

## Known failure modes

- Missing or invalid state parameter returns an error or generic result
- State has no specific programs — returns federal-only programs
- Payment of 0.1 USDC required; failure to pay results in 402 Payment Required
- Rate limiting may occur with excessive calls
- Data may be out of date if state programs have changed recently

## How this service works

First-time homebuyer down-payment-assistance finder: every DPA grant and program, eligible loan types (FHA, VA, USDA, conventional), max home price, closing-cost estimate, and step-by-step process for any US state. For homebuyer and real-estate agents.

## Output

A structured guide covering: all available first-time homebuyer assistance programs (state and federal grants, down payment assistance, tax credits), eligible loan types (FHA, VA, USDA, conventional), and a step-by-step walkthrough of the home purchase process tailored to the specified state.

## 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-guide-40a19071/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)
