# x402-factory NBA Basketball Event Calendar

> x402-factory NBA Basketball 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 NBA basketball prediction market events sorted by resolution date, with current blended probabilities, covering up to 90 days ahead.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar/sports-nba
- 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-nba-basketball-event-calendar-2a8b7c24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QZq58Xsn1-_hSu_mUmwhu

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-nba-basketball-event-calendar-2a8b7c24
```

Example prompt: Pull the upcoming NBA basketball prediction market calendar for the next 30 days and show me all the events with their current probabilities in resolution-date order.

## When to prefer this

Use this endpoint when you specifically need NBA basketball prediction market events with forward-looking probabilities. It is a pre-filtered convenience endpoint equivalent to calling /v1/calendar with a sports-nba scope, saving the agent from filtering a broader result set. Prefer it over the generic /v1/calendar when you only care about NBA markets. Not suitable for other sports, politics, economics, or non-basketball market categories.

## Known failure modes

- days parameter out of range (must be 1–90) returns validation error
- category filter mismatch (endpoint is pre-filtered to NBA sports, passing an incompatible category may return empty or error)
- no events found if no NBA games are scheduled in the requested window
- payment failure or insufficient USDC balance blocks the call (x402 payment required, $0.01 USDC per call)
- stale probabilities if underlying market data has not refreshed recently

## How this service works

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

## Output

A JSON array of upcoming NBA basketball prediction market events, each containing a slug identifier, the market question (e.g. 'Will the Lakers win game 3?'), a resolution date string, the current blended probability (0–1 float), and category label — all sorted in ascending resolution-date order. A meta object is also returned alongside the events array.

## 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.sports-nba",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/calendar/sports-nba",
   "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-nba-basketball-event-calendar-2a8b7c24/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)
