# x402-factory Science & Tech Event Calendar

> x402-factory Science & Tech 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-15).

Returns upcoming science and technology prediction market events in date order with current blended resolution probabilities, filtered to the science-tech category.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar/science-tech
- 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/x402-factory-science-tech-event-calendar-242eca38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8cwroRExWPpelEzgD9-2E

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-science-tech-event-calendar-242eca38
```

Example prompt: Pull the science and tech prediction market calendar for the next 30 days — I want to see all upcoming events with their current resolution probabilities in date order.

## When to prefer this

Use this endpoint when you need a pre-filtered, date-ordered calendar of science and technology prediction market events with live probabilities in a single call, rather than fetching the full cross-category calendar and filtering client-side. Ideal for agents monitoring upcoming tech, AI, biotech, or space events and wanting to position around or report on them.

## Known failure modes

- Invalid days parameter (outside 1–90 range) returns a validation error
- Payment failure or missing x402 payment header results in a 402 response
- No events found for the requested window returns an empty events array
- Category mismatch or unsupported category enum value returns an error

## How this service works

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

## Output

A JSON array of upcoming science and technology prediction market events, each containing a slug, the market question, the resolution date, the current blended probability (0–1), and the category label, sorted in date order. A meta object accompanies the data payload.

## 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": []
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.calendar.science-tech",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/calendar/science-tech",
   "data_mode": "live",
   "freshness": "hourly",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.083Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-science-tech-event-calendar-242eca38/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)
