# Fathom Macroeconomic Calendar API

> Fathom Macroeconomic Calendar API is a paid API for AI agents from fathoms.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Fetches upcoming macroeconomic calendar events (e.g. GDP releases, FOMC meetings, jobs reports) powered by FRED data

## Facts

- Endpoint: POST https://fathoms.vercel.app/api/calendar
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fathom-macroeconomic-calendar-api-d03fe485
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2gDj2ABHHHzWtNnIuY_sM

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 fathom-macroeconomic-calendar-api-d03fe485 -d '<json body>'
```

Example prompt: Show me the next 15 upcoming macroeconomic calendar events — things like Fed meetings, jobs reports, CPI releases — using the Fathom FRED-powered calendar.

## When to prefer this

Use this endpoint when you need a forward-looking schedule of upcoming macroeconomic data releases and events rather than historical time-series values. It is ideal for agents that need to anticipate market-moving events, build economic calendars, or monitor scheduled announcements like FOMC meetings, jobs reports, or inflation data releases.

## Known failure modes

- Invalid limit value (non-numeric string) may return an error or default to 15
- Network timeout if FRED data source is slow to respond
- Empty events array if no upcoming events are scheduled in the near term
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Free macroeconomic data API powered by FRED. 816,000+ economic time series. GDP, inflation, unemployment, interest rates, and more.

## Output

Returns an array of upcoming macroeconomic calendar events (e.g. scheduled GDP, CPI, unemployment, FOMC releases) along with a source attribution string. Each event object contains details about the scheduled economic data release.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Max results (default: 15)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "source"
 ],
 "properties": {
  "events": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "source": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fathom-macroeconomic-calendar-api-d03fe485/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fathoms.vercel.app](https://www.zero.xyz/host/fathoms.vercel.app/llms.txt)
