# NPB Asian Handicap Oracle

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

Returns Asian handicap betting oracle data for NPB (Nippon Professional Baseball) games on a specified date.

## Facts

- Endpoint: GET https://oracle-api-production-766f.up.railway.app/v1/npb/ah/:date
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/npb-asian-handicap-oracle-671813c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cLjdW0JLqJKAF7ncwuDO0

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-asian-handicap-oracle-671813c4
```

Example prompt: Pull the NPB Asian handicap oracle data for June 15, 2025 — I want to see the handicap lines and predictions for all Japanese baseball games that day.

## When to prefer this

Use this endpoint when you need Asian handicap-specific oracle outputs for NPB games (not just win probabilities), particularly for sports betting analysis or handicap line research on Japanese professional baseball. Choose this over the NPB win probability endpoint when handicap spread data is the primary requirement.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) returns a 400 validation error
- No NPB games scheduled on the requested date returns empty or null data
- Date too far in the future with no available oracle data
- Service unavailable or upstream oracle data not ready returns 5xx
- Payment not provided or invalid x402 payment header returns 402

## How this service works

Returns NPB Asian handicap oracle data for a given date.

## Output

Returns Asian handicap oracle data for NPB games on the requested date, including handicap lines, predicted spreads, and related oracle forecast values for each scheduled game.

## 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-asian-handicap-oracle-671813c4/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)
