# LastLook Data — FRED Economic Calendar

> LastLook Data — FRED Economic Calendar is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13, last successful call 2026-06-02).

Returns upcoming FRED economic data release dates (CPI, jobs, GDP, Treasury, etc.) for a configurable lookahead window of 30, 60, or 90 days

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/calendar
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Last successful call: 2026-06-02
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-lastlookdata-com-e4febf8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HvgX76oL7EkG7xKgkV17X

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-e4febf8c
```

Example prompt: What major US economic data releases — like CPI, jobs, and GDP — are scheduled to come out in the next 60 days according to FRED?

## When to prefer this

Use this endpoint when you need to know WHEN upcoming US macroeconomic data will be released — e.g. planning around CPI, jobs, GDP, or Treasury announcements. Prefer this over general web search when you need structured, machine-readable release schedules sourced directly from FRED. Choose the 30-day window for near-term planning, 60 for medium-term, and 90 for quarterly outlooks.

## Known failure modes

- Invalid 'days' value (not 30, 60, or 90) returns an error or empty result
- Payment of 0.02 USDC not provided via x402 protocol results in 402 Payment Required
- No upcoming releases in the selected window returns an empty list
- Network timeout or upstream FRED data unavailability causes a 503 or similar error

## How this service works

LastLook Data — upcoming FRED economic data release dates. CPI, jobs, GDP, Treasury, and more. Use ?days=30|60|90.

## Output

A list of upcoming FRED economic data release events including release names and scheduled dates, filtered to the requested lookahead window (30, 60, or 90 days). Covers indicators such as CPI, non-farm payrolls, GDP, Treasury yields, and more.

## Example request

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

## 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": {
      "days": {
       "enum": [
        "30",
        "60",
        "90"
       ],
       "type": "string",
       "description": "Lookahead window in days"
      }
     }
    }
   },
   "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-e4febf8c/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)
