# LastLook Data — Mortgage Pulse Bundle

> LastLook Data — Mortgage Pulse Bundle is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-13).

Returns a comprehensive mortgage market snapshot including 30yr and 15yr mortgage rates, 10Y Treasury yield, Fed funds rate, MBS spread, median home price, housing starts, and rate trend.

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/bundle/mortgage-pulse
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-lastlookdata-com-116dfb4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1NheOP9JJWVYet3YPWxdD

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 api-lastlookdata-com-116dfb4a
```

Example prompt: Can you pull the latest mortgage market pulse — I need current 30yr and 15yr mortgage rates, the 10Y Treasury yield, Fed funds rate, MBS spread, median home price, and housing starts all in one shot?

## When to prefer this

Use this endpoint when you need a single-call snapshot of the entire US mortgage market — including rates, housing fundamentals, and rate trend — rather than querying individual FRED series separately. Ideal for mortgage market briefings, housing affordability analysis, or LLM context injection requiring multiple correlated indicators at once.

## Known failure modes

- Data source temporarily unavailable from FRED or upstream provider — may return 503 or stale data
- Payment of 0.4 USDC not fulfilled via x402 — returns 402 Payment Required
- Rate limiting or abuse detection — returns 429 Too Many Requests
- Unexpected schema change in upstream FRED data — partial or malformed response

## How this service works

LastLook Data — mortgage market pulse: 30yr and 15yr mortgage rates, 10Y Treasury, Fed funds, median home price, housing starts. Includes MBS spread and rate trend.

## Output

A bundled JSON object containing the most recent values for 30-year and 15-year fixed mortgage rates, 10Y Treasury yield, Federal funds rate, MBS spread, median home price, housing starts, and a rate trend signal — all in one response.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-lastlookdata-com-116dfb4a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.lastlookdata.com](https://www.zero.xyz/host/api.lastlookdata.com/llms.txt)
