# NPB Games List by Date

> NPB Games List by Date is a paid API for AI agents from oracle-api-production-766f.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the list of Nippon Professional Baseball (NPB) games scheduled or played on a specified date.

## Facts

- Endpoint: POST https://oracle-api-production-766f.up.railway.app/v1/npb/games/:date/list
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/npb-games-list-by-date-8098384a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fItRPYgbSd9uxRfbsNKkR

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 npb-games-list-by-date-8098384a -d '<json body>'
```

Example prompt: What NPB games are scheduled for July 10th, 2025? I want to see all the Japanese baseball matchups for that day.

## When to prefer this

Use this endpoint when you need to discover which NPB games are taking place on a given date before fetching further details like win probabilities, handicap data, or forecasts. It serves as the entry point for NPB game-day data pipelines.

## Known failure modes

- Invalid or malformed date format returns an error
- No games found for the requested date (off-season or rest day) returns empty list
- Future dates beyond the current schedule may return no results
- Invalid date string causes a 400 or similar client error

## How this service works

Returns the list of NPB games for a specified date.

## Output

A list of NPB games for the specified date, including team matchups and game details such as home/away teams and likely game identifiers for that day's schedule.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/npb-games-list-by-date-8098384a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracle-api-production-766f.up.railway.app](https://www.zero.xyz/host/oracle-api-production-766f.up.railway.app/llms.txt)
