# NPB Individual Fielder Stats Lookup by Season and Name

> NPB Individual Fielder Stats Lookup by Season and Name is a paid API for AI agents from oracle-api-production-766f.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Looks up Japanese baseball (NPB) fielding statistics for a specific player by season and name, returning their stats across all positions from the official BIS fielding ranking.

## Facts

- Endpoint: POST https://oracle-api-production-766f.up.railway.app/v1/npb/players/fielder/:season
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/npb-individual-fielder-stats-lookup-by-season-and-name-17c1e87b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NI8ERBWoOZh5m-fhDVS_r

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-individual-fielder-stats-lookup-by-season-and-name-17c1e87b -d '<json body>'
```

Example prompt: Can you pull up the 2023 NPB fielding stats for 源田壮亮 — I want to see his defensive numbers across all positions he qualified for this season.

## When to prefer this

Use this endpoint when you need fielding statistics for a specific named NPB player (rather than the full positional leaderboard). Ideal for scouting individual defenders, evaluating utility infielders who appear at multiple positions, or building fantasy baseball defensive profiles. Prefer the full fielding rankings endpoint when you want all qualified players at a given position, and use this endpoint when you already have a player name and want their stats quickly.

## Known failure modes

- Player name not found — returns empty position arrays and match_count of 0
- Invalid season year format — API error or empty response
- Player did not meet 規定試合数 (minimum qualifying games) — not included in results
- URL-encoding issues with Japanese character names — no match returned
- Network timeout or Railway.app hosting downtime — connection error

## How this service works

Japanese baseball (NPB) individual fielder stats lookup by season + name (case-insensitive partial match). Returns single-player subset across all positions (1B / 2B / 3B / SS / OF / C / P) from the official BIS fielding ranking (規定試合数 met only). Use cases: NPB defensive matchup analysis, multi-position player evaluation (e.g. utility infielders), agent-driven scouting, fantasy baseball defensive contribution lookup. Cheap subset price ($0.003). Input: :season (YYYY) path param + ?name=<query string> (URL-encoded, JP or EN). Output: JSON {season, league, category:"fielders", subleagues:{central:{positions:{matched_pos:[player]}}, pacific:{...}}, match_count, query_name}. Pay-per-call $0.003 USDC on Solana mainnet.

## Output

A JSON object containing the season, league, category (fielders), and a subleagues object with Central and Pacific league breakdowns, each listing matched player fielding stats by position. Also includes match_count and the original query_name.

## 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": [
      "season"
     ],
     "properties": {
      "season": {
       "type": "string",
       "pattern": "^\\d{4}$"
      }
     }
    },
    "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-individual-fielder-stats-lookup-by-season-and-name-17c1e87b/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)
