# x402-factory Economics Event Calendar

> x402-factory Economics Event Calendar is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns upcoming economics prediction market events sorted by resolution date with current blended probabilities, pre-filtered to the economics category.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar/economics
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-economics-event-calendar-706f0a57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_weimnJ-hCazTLOZfEDIYH

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 x402-factory-economics-event-calendar-706f0a57
```

Example prompt: Pull the economics event calendar for the next 30 days from x402-factory and show me which markets are resolving soonest along with their current probabilities.

## When to prefer this

Use this endpoint when you need a pre-filtered, date-ordered list of upcoming economics prediction market events with live probabilities. Prefer this over the general /v1/calendar endpoint when you specifically want economics markets only, avoiding the need to client-side filter a broader dataset. Ideal for agents building macro event calendars, positioning strategies, or briefing workflows focused on economic policy, data releases, and related events.

## Known failure modes

- days parameter out of range (1–90) returns a validation error
- No events found for the requested window returns an empty events array
- Payment not included or invalid returns a 402 Payment Required response
- Network or upstream data latency may cause slow or failed responses
- Category filter is fixed to economics — passing other categories will be ignored or rejected

## How this service works

Upcoming economics event resolutions — Upcoming economics market resolutions in date order with current blended probabilities — the forward calendar of economics events an agent can position around. Same shape as /v1/calendar, pre-filtered to economics markets.

## Output

An array of economics prediction market events in resolution-date order, each containing a slug identifier, the market question text, resolution date, current blended probability (0–1 float), and category label. Also includes a meta object with response metadata.

## 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",
     "required": [],
     "properties": {
      "days": {
       "type": "integer",
       "default": 14,
       "maximum": 90,
       "minimum": 1
      },
      "category": {
       "enum": [
        "politics",
        "economics",
        "weather",
        "crypto",
        "sports",
        "science-tech",
        "entertainment"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "events"
       ],
       "properties": {
        "events": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "resolution_date",
           "current_p",
           "category"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "category": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "current_p": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "events": [
    {
     "slug": "gdp-q2-2026-positive",
     "category": "economics",
     "question": "Will the Q2 2026 US GDP advance print show positive growth?",
     "current_p": 0.7073,
     "resolution_date": "2026-07-30"
    },
    {
     "slug": "opec-production-cut-2026-08",
     "category": "economics",
     "question": "Will OPEC+ announce a production cut at its August 2026 meeting?",
     "current_p": 0.2443,
     "resolution_date": "2026-08-03"
    },
    {
     "slug": "us-cpi-above-3pct-2026-08",
     "category": "economics",
     "question": "Will July CPI year-over-year come in above 3.0%?",
     "current_p": 0.442,
     "resolution_date": "2026-08-12"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.calendar.economics",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/calendar/economics",
   "data_mode": "live",
   "freshness": "hourly",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.082Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-economics-event-calendar-706f0a57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
