# x402-factory Science & Tech Prediction Markets Board

> x402-factory Science & Tech Prediction Markets Board is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns all active science and technology prediction markets with live blended probabilities, 24h volume, resolution dates, and slugs in a single call.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/science-tech
- Price: $0.03/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-science-tech-prediction-markets-board-59900990
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T6zhon86yzz_KgmHNP06N

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-prediction-markets-board-59900990
```

Example prompt: Pull up the full board of active science and technology prediction markets — I want to see live probabilities and 24-hour volume for up to 30 markets so I can track where things stand right now.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call snapshot of all active science and technology prediction markets — especially for dashboards, briefings, or agent workflows that need bulk market state rather than a single market's detail. Prefer this over drill-down slug endpoints when you don't yet know which specific markets are active or want to rank by volume.

## Known failure modes

- Payment not processed (x402 payment required before data is returned)
- limit parameter out of range (must be 1–50, default 20)
- Upstream prediction market data unavailable (service outage or stale data)
- Rate limiting if called too frequently without valid payment

## How this service works

All active science and technology markets with live probabilities in one call — One-call board of the most active science and technology prediction markets: top markets by volume with blended live probabilities, resolution dates, and per-market slugs for drill-down. The bulk read for agents tracking the state of science and technology at a glance.

## Output

Returns a JSON object with a 'data' field containing the category label ('science-tech') and an array of up to 50 markets, each with: slug (for drill-down), question text, blended probability (0–1), 24-hour volume in USD, and resolution date. Also includes a meta object with request 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": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "category",
        "markets"
       ],
       "properties": {
        "markets": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "probability",
           "volume_24h_usd",
           "resolution_date"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "probability": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "volume_24h_usd": {
            "type": "number"
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "category": {
         "type": "string"
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "markets": [
    {
     "slug": "starship-booster-catch-twice-2026-12",
     "question": "Will SpaceX catch a Starship booster twice more by December 31?",
     "probability": 0.6404,
     "volume_24h_usd": 130382.1,
     "resolution_date": "2026-12-31"
    },
    {
     "slug": "openai-releases-gpt6-2026-12",
     "question": "Will OpenAI release GPT-6 by end of 2026?",
     "probability": 0.4681,
     "volume_24h_usd": 130225.49,
     "resolution_date": "2026-12-31"
    },
    {
     "slug": "apple-announces-foldable-2026-09",
     "question": "Will Apple announce a foldable device at its September event?",
     "probability": 0.1686,
     "volume_24h_usd": 70815.04,
     "resolution_date": "2026-09-15"
    },
    {
     "slug": "federal-ai-regulation-law-2026",
     "question": "Will major federal AI regulation become law in 2026?",
     "probability": 0.1221,
     "volume_24h_usd": 66632.33,
     "resolution_date": "2026-12-31"
    },
    {
     "slug": "room-temp-superconductor-replicated-2026-12",
     "question": "Will a replicated room-temperature superconductor be published in 2026?",
     "probability": 0.0421,
     "volume_24h_usd": 11993.21,
     "resolution_date": "2026-12-31"
    }
   ],
   "category": "science-tech"
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.board.science-tech",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/board/science-tech",
   "data_mode": "live",
   "freshness": "realtime",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.081Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-science-tech-prediction-markets-board-59900990/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)
