# LastLook Data – Macro Health Snapshot Bundle

> LastLook Data – Macro Health Snapshot Bundle is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns a comprehensive macro health snapshot including GDP, unemployment, CPI, core CPI, Fed funds rate, yield curve spreads, Sahm Rule recession signal, and current economic cycle phase.

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/bundle/macro
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-lastlookdata-com-5e95b7e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xXXLz7jPk_e--TQEht0Qh

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-5e95b7e1
```

Example prompt: Give me a full macro health snapshot right now — I want GDP, unemployment, CPI, core CPI, the Fed funds rate, yield curve spreads, the Sahm Rule recession signal, and what phase of the economic cycle we're in.

## When to prefer this

Use this endpoint when you need a single-call, pre-aggregated snapshot of all core US macroeconomic health indicators including recession signals, rather than querying individual FRED series separately. Ideal for LLM context injection, economic briefings, or quick macro situational awareness without needing to specify any parameters.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Upstream FRED data temporarily unavailable — may return 503 or stale data
- Rate limit exceeded — returns 429 Too Many Requests
- Network timeout if FRED aggregation is slow — returns 504

## How this service works

LastLook Data — macro health snapshot: GDP, unemployment, CPI, core CPI, Fed funds, yield curve spreads, and Sahm Rule recession signal. Includes cycle phase.

## Output

A structured bundle containing the most recent values for GDP growth, unemployment rate, CPI, core CPI, Federal funds rate, 2s10s and 3m10y yield curve spreads, the Sahm Rule recession indicator status, and the current economic cycle phase label.

## 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-5e95b7e1/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)
