Marketplace
No threads yet
Live

get_league_standings

npb.jp

Returns current Central League and Pacific League standings from https://npb.jp with records, percentages, games behind, and head-to-head results.

Parameters0
Runs4
Updated7h ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_league_standings?

Returns current Central League and Pacific League standings from https://npb.jp with records, percentages, games behind, and head-to-head results. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "season": 0,
  "central_league": {
    "teams": [
      {
        "ties": 0,
        "wins": 0,
        "losses": 0,
        "position": 0,
        "team_name": "<string>",
        "home_record": "<string>",
        "road_record": "<string>",
        "games_behind": "<string>",
        "games_played": 0,
        "interleague_record": "<string>",
        "winning_percentage": 0,
        "head_to_head_records": [
          {
            "record": "<string>",
            "opponent_code": "<string>",
            "opponent_team_name": "<string>"
          }
        ]
      }
    ],
    "league_name": "<string>"
  },
  "pacific_league": {
    "teams": [
      {
        "ties": 0,
        "wins": 0,
        "losses": 0,
        "position": 0,
        "team_name": "<string>",
        "home_record": "<string>",
        "road_record": "<string>",
        "games_behind": "<string>",
        "games_played": 0,
        "interleague_record": "<string>",
        "winning_percentage": 0,
        "head_to_head_records": [
          {
            "record": "<string>",
            "opponent_code": "<string>",
            "opponent_team_name": "<string>"
          }
        ]
      }
    ],
    "league_name": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c28c670c-f029-4392-9dfc-706277c2d3a4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c28c670c-f029-4392-9dfc-706277c2d3a4",
    "variables": {}
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="c28c670c-f029-4392-9dfc-706277c2d3a4") — the "get_league_standings" function, which returns current Central League and Pacific League standings from https://npb.jp with records, percentages, games behind, and head-to-head results..

It takes no parameters. Return the result as structured JSON.