# AlphaPipeline Macro Calendar

> AlphaPipeline Macro Calendar is a paid API for AI agents from alphapipeline-eu.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a countdown to the nearest FOMC, US CPI, or NFP release date with impact tags and upcoming macro events from pre-loaded 2026 Fed/BLS schedules

## Facts

- Endpoint: GET https://alphapipeline-eu.onrender.com/v1/calendar/macro-dday
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapipeline-macro-calendar-5670828c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4AKpR9fixsRsNjeQTmrnD

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 alphapipeline-macro-calendar-5670828c
```

Example prompt: How many days until the next FOMC rate decision or US CPI release? Give me the countdown and any other big macro events coming up soon.

## When to prefer this

Choose this endpoint when you need a fast, low-cost ($0.01) structured countdown to major US macro events (FOMC, CPI, NFP) without needing real-time external data scraping. Ideal for trading agents that need to check macro proximity before executing strategies, or for automated weekly briefings. Prefer this over general-purpose calendar APIs when you specifically need Fed/BLS event schedules with impact classifications pre-applied.

## Known failure modes

- Service unavailable if render.com host is sleeping (cold start delay)
- Stale data if pre-loaded schedule has not been updated for 2026 events
- Payment failure if USDC on Base is not available or x402 handshake fails
- Returns null fields for d_day and event details if no upcoming events are found in schedule

## How this service works

Static 2026 macro calendar - countdown to the nearest FOMC rate decision, US CPI, or US Employment Situation (NFP) release, with impact tags and the next few upcoming events. No live external API call is made; dates are pre-loaded from official Fed/BLS schedules. Paid in USDC on Base.

## Output

Returns a JSON object with: the nearest macro event name (FOMC/CPI/NFP), its type and scheduled datetime in UTC and KST, days/hours/minutes remaining, impact level tag, descriptive text, list of upcoming events with their details, the data source attribution, and generation timestamp.

## 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",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "MacroDdayResponse",
     "required": [
      "generated_at",
      "data_source"
     ],
     "properties": {
      "tags": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "title": "Tags",
       "default": []
      },
      "d_day": {
       "anyOf": [
        {
         "type": "integer"
        },
        {
         "type": "null"
        }
       ],
       "title": "D Day",
       "default": null
      },
      "notice": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ],
       "title": "Notice",
       "default": null
      },
      "event_name": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ],
       "title": "Event Name",
       "default": null
      },
      "event_type": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ],
       "title": "Event Type",
       "default": null
      },
      "data_source": {
       "type": "string",
       "title": "Data Source"
      },
      "description": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ],
       "title": "Description",
       "default": null
      },
      "generated_at": {
       "type": "object",
       "title": "TimestampPair",
       "required": [
        "utc",
        "kst"
       ],
       "properties": {
        "kst": {
         "type": "string",
         "title": "Kst"
        },
        "utc": {
         "type": "string",
         "title": "Utc"
        }
       }
      },
      "impact_level": {
       "anyOf": [
        {
         "type": "string"
        },
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapipeline-macro-calendar-5670828c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphapipeline-eu.onrender.com](https://www.zero.xyz/host/alphapipeline-eu.onrender.com/llms.txt)
