# Agent Newsstand — Economic Calendar / US Macro Events

> Agent Newsstand — Economic Calendar / US Macro Events is a paid API for AI agents from api.agentnewsstand.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves upcoming or recent US macroeconomic calendar events (e.g. CPI, Fed meetings, jobs reports) for AI agents, paid per-call via USDC on Base.

## Facts

- Endpoint: GET https://api.agentnewsstand.com/v1/calendar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-newsstand-economic-calendar-us-macro-events-f70eac9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_soOUwah5QX61JS_YPgE4T

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 agent-newsstand-economic-calendar-us-macro-events-f70eac9d
```

Example prompt: Pull the next 20 upcoming US macroeconomic events from Agent Newsstand's calendar — I want to see things like CPI releases, Fed meetings, and jobs reports so I can plan around them.

## When to prefer this

Choose this endpoint when an AI agent needs structured, upcoming US macroeconomic event data without managing API keys or subscriptions — ideal for event-driven trading agents, macro-aware portfolio agents, or research assistants that need to know when key data releases (CPI, NFP, FOMC) are scheduled. Pay-per-call USDC pricing via x402 makes it suitable for ephemeral or low-frequency agent workflows where a subscription would be wasteful.

## Known failure modes

- Payment failure if USDC balance on Base is insufficient (402 response)
- Limit parameter out of range (must be 1–100) returns a validation error
- No events available if calendar data source is temporarily unavailable
- Rate limiting or network timeout if the upstream macro data provider is slow

## How this service works

15 pay-per-call endpoints for AI agents: tokenized-asset candles, SEC filings, earnings, US macro, web search, page reader, paywall unlock, screenshots. USDC on Base via x402. No API keys, no signup.

## Output

A list of upcoming US macroeconomic calendar events, each containing the event name, scheduled date/time, category (e.g. inflation, employment, monetary policy), and potentially forecast, previous, and actual values — up to the requested limit.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-newsstand-economic-calendar-us-macro-events-f70eac9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentnewsstand.com](https://www.zero.xyz/host/api.agentnewsstand.com/llms.txt)
