# LastLook Data Economic Context Brief

> LastLook Data Economic Context Brief is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Returns 15+ macroeconomic indicators (rates, inflation, employment, FX, energy) as a pre-formatted natural-language paragraph ready for LLM context injection

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/bundle/context-brief
- Price: $0.75/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-2a157c54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2LfDCF13__BRVw9b5lv6-

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-2a157c54
```

Example prompt: Give me a current macroeconomic context brief — rates, inflation, employment, FX, and energy — formatted as a natural-language paragraph I can paste directly into my AI model's system prompt.

## When to prefer this

Use this endpoint when you need a single, comprehensive macroeconomic snapshot across all major indicator categories (rates, inflation, employment, FX, energy) formatted specifically for LLM context injection. Prefer this over individual indicator endpoints when you want breadth across all macro domains in one call rather than depth on a specific series or asset class.

## Known failure modes

- Payment required (402) if x402 payment header is missing or invalid
- Upstream FRED or market data unavailable causing stale or partial response
- Rate limiting if too many requests in a short window
- Network timeout if data aggregation takes too long

## How this service works

LastLook Data — economic context brief: 15+ indicators across rates, inflation, employment, FX, and energy in a pre-formatted natural-language paragraph for LLM context injection.

## Output

A pre-formatted natural-language paragraph covering 15+ macroeconomic indicators spanning interest rates (Fed funds, SOFR, Treasuries), inflation (CPI, core CPI), employment, G10 FX spot rates, and energy prices (WTI, Brent, gasoline, natural gas) — ready to inject directly into an LLM context window without further processing.

## 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-2a157c54/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)
