NAV
shell javascript python

MLB API

Welcome to the BALLDONTLIE MLB API, the best MLB API on the planet. This API contains data from 2002-current. An API key is required. You can obtain an API key by creating a free account on our website. Read the authentication section to learn how to use the API key.

Download language specific libraries:

Take a look at our other APIs:

Join us on discord.

AI-Powered Integration

Using the OpenAPI Specification with AI

Our complete OpenAPI specification allows AI assistants to automatically understand and interact with our API. Simply share the spec URL with your AI assistant and describe what you want to build—the AI will handle the technical implementation.

Getting Started with AI:

  1. Copy this URL: https://www.balldontlie.io/openapi.yml
  2. Share it with your preferred AI assistant (ChatGPT, Claude, Gemini, etc.)
  3. Tell the AI what you want to build (e.g., "Create a dashboard showing today's MLB games")
  4. The AI will read the OpenAPI spec and write the code for you

Example prompts to try:

This makes it incredibly easy for non-technical users, analysts, and researchers to leverage our sports data without needing to learn programming from scratch.

MCP Server Integration

Connect to our sports data through any MCP-compatible client using our hosted MCP server. The MCP (Model Context Protocol) server allows AI assistants to interact with our API through natural language.

Quick Setup

Add this configuration to your MCP client (e.g., Claude Desktop, or any other MCP-compatible client):

{
  "mcpServers": {
    "balldontlie-api": {
      "url": "https://mcp.balldontlie.io/mcp",
      "transport": "http",
      "headers": {
        "Authorization": "YOUR_BALLDONTLIE_API_KEY"
      }
    }
  }
}

Open Source Implementation

Check out our open-source MCP server implementation on GitHub: https://github.com/balldontlie-api/mcp

Usage Examples

Once configured, you can ask your AI assistant natural language questions like:

The MCP server provides access to all available API endpoints through conversational AI, making it easy to integrate sports data into any AI-powered application.

Account Tiers

There are three different account tiers which provide you access to different types of data. Visit our website to create an account for free.

Paid tiers do not apply across sports. The tier you purchase for MLB will not automatically be applied to other sports. You can purchase the ALL-ACCESS ($159.99/mo) tier to get access to every endpoint for every sport.

Read the table below to see the breakdown.

Endpoint Free ALL-STAR GOAT
Teams Yes Yes Yes
Players Yes Yes Yes
Games Yes Yes Yes
Player Injuries No Yes Yes
Active Players No Yes Yes
Team Standings No Yes Yes
Player Stats No Yes Yes
Player Season Stats No No Yes
Team Season Stats No No Yes
Player Splits No No Yes
Player vs Player No No Yes

The feature breakdown per tier is shown in the table below.

Tier Requests / Min $USD / mo.
GOAT 600 39.99
ALL-STAR 60 9.99
Free 5 0

Authentication

To authorize, use this code:

curl "api_endpoint_here" -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")

Make sure to replace YOUR_API_KEY with your API key.

BALLDONTLIE uses API keys to allow access to the API. You can obtain an API key by creating a free account at our website

We expect the API key to be included in all API requests to the server in a header that looks like the following:

Authorization: YOUR_API_KEY

Pagination

This API uses cursor based pagination rather than limit/offset. Endpoints that support pagination will send back responses with a meta key that looks like what is displayed on the right.

{
  "meta": {
    "next_cursor": 90,
    "per_page": 25
  }
}

You can use per_page to specify the maximum number of results. It defaults to 25 and doesn't allow values larger than 100.

You can use next_cursor to get the next page of results. Specify it in the request parameters like this: ?cursor=NEXT_CURSOR.

Errors

The API uses the following error codes:

Error Code Meaning
401 Unauthorized - You either need an API key or your account tier does not have access to the endpoint.
400 Bad Request -- The request is invalid. The request parameters are probably incorrect.
404 Not Found -- The specified resource could not be found.
406 Not Acceptable -- You requested a format that isn't json.
429 Too Many Requests -- You're rate limited.
500 Internal Server Error -- We had a problem with our server. Try again later.
503 Service Unavailable -- We're temporarily offline for maintenance. Please try again later.

Teams

Get All Teams

curl "https://api.balldontlie.io/mlb/v1/teams" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const teams = await api.mlb.getTeams();
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
teams = api.mlb.teams.list()

The above command returns JSON structured like this:

{
  "data": [
    {
        "id": 6,
        "slug": "chicago-white-sox",
        "abbreviation": "CHW",
        "display_name": "Chicago White Sox",
        "short_display_name": "White Sox",
        "name": "White Sox",
        "location": "Chicago",
        "league": "American",
        "division": "Central"
    },
    ...
  ]
}

This endpoint retrieves all teams.

HTTP Request

GET https://api.balldontlie.io//mlb/v1/teams

Query Parameters

Parameter Required Description
division false Returns teams that belong to this division
league false Returns teams that belong to this league

Get a Specific Team

curl "https://api.balldontlie.io/mlb/v1/teams/<ID>" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const team = await api.mlb.getTeam(6);
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
team = api.mlb.teams.get(6)

The above command returns JSON structured like this:

{
  "data": {
    "id": 6,
    "slug": "chicago-white-sox",
    "abbreviation": "CHW",
    "display_name": "Chicago White Sox",
    "short_display_name": "White Sox",
    "name": "White Sox",
    "location": "Chicago",
    "league": "American",
    "division": "Central"
  }
}

This endpoint retrieves a specific team.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/teams/<ID>

URL Parameters

Parameter Required Description
ID true The ID of the team to retrieve

Players

Get All Players

curl "https://api.balldontlie.io/mlb/v1/players" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const players = await api.mlb.getPlayers();
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
players = api.mlb.players.list()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 208,
      "first_name": "Shohei",
      "last_name": "Ohtani",
      "full_name": "Shohei Ohtani",
      "debut_year": 2018,
      "jersey": "17",
      "college": null,
      "position": "Designated Hitter",
      "active": true,
      "birth_place": "Oshu, Japan",
      "dob": "5/7/1994",
      "age": 30,
      "height": "6' 4\"",
      "weight": "210 lbs",
      "draft": null,
      "bats_throws": "Left/Right",
      "team": {
        "id": 14,
        "slug": "los-angeles-dodgers",
        "abbreviation": "LAD",
        "display_name": "Los Angeles Dodgers",
        "short_display_name": "Dodgers",
        "name": "Dodgers",
        "location": "Los Angeles",
        "league": "National",
        "division": "West"
      }
    },
    ...
  ],
  "meta": { "next_cursor": 25, "per_page": 25 }
}

This endpoint retrieves all players.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/players

Query Parameters

Parameter Required Description
cursor false The cursor, used for pagination
per_page false The number of results per page. Default to 25. Max is 100
search false Returns players whose first or last name matches this value. For example, ?search=shohei will return players that have 'shohei' in their first or last name.
first_name false Returns players whose first name matches this value. For example, ?search=shohei will return players that have 'shohei' in their first name.
last_name false Returns players whose last name matches this value. For example, ?search=ohtani will return players that have 'ohtani' in their last name.
team_ids false Returns players that belong to these team ids. This should be an array: ?team_ids[]=1&team_ids[]=2
player_ids false Returns players that match these ids. This should be an array: ?player_ids[]=1&player_ids[]=2

Get a Specific Player

curl "https://api.balldontlie.io/mlb/v1/players/<ID>" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const player = await api.mlb.getPlayer(208);
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
player = api.mlb.players.get(33)

The above command returns JSON structured like this:

{
  "data": {
    "id": 208,
    "first_name": "Shohei",
    "last_name": "Ohtani",
    "full_name": "Shohei Ohtani",
    "debut_year": 2018,
    "jersey": "17",
    "college": null,
    "position": "Designated Hitter",
    "active": true,
    "birth_place": "Oshu, Japan",
    "dob": "5/7/1994",
    "age": 30,
    "height": "6' 4\"",
    "weight": "210 lbs",
    "draft": null,
    "bats_throws": "Left/Right",
    "team": {
      "id": 14,
      "slug": "los-angeles-dodgers",
      "abbreviation": "LAD",
      "display_name": "Los Angeles Dodgers",
      "short_display_name": "Dodgers",
      "name": "Dodgers",
      "location": "Los Angeles",
      "league": "National",
      "division": "West"
    }
  }
}

This endpoint retrieves a specific player.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/players/<ID>

URL Parameters

Parameter Required Description
ID true The ID of the player to retrieve

Player Injuries

Get All Player Injuries

curl "https://api.balldontlie.io/mlb/v1/player_injuries" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const injuries = await api.mlb.getPlayerInjuries();
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
injuries = api.mlb.injuries.list()

The above command returns JSON structured like this:

{
  "data": [
    {
      "player": {
        "id": 208,
        "first_name": "Shohei",
        "last_name": "Ohtani",
        "full_name": "Shohei Ohtani",
        "debut_year": 2018,
        "jersey": "17",
        "college": null,
        "position": "Designated Hitter",
        "active": true,
        "birth_place": "Oshu, Japan",
        "dob": "5/7/1994",
        "age": 30,
        "height": "6' 4\"",
        "weight": "210 lbs",
        "draft": null,
        "bats_throws": "Left/Right",
        "team": {
          "id": 14,
          "slug": "los-angeles-dodgers",
          "abbreviation": "LAD",
          "display_name": "Los Angeles Dodgers",
          "short_display_name": "Dodgers",
          "name": "Dodgers",
          "location": "Los Angeles",
          "league": "National",
          "division": "West"
        }
      },
      "date": "2024-11-05T23:32:00.000Z",
      "return_date": "2025-02-01T00:00:00.000Z",
      "type": "Shoulder",
      "detail": "Surgery",
      "side": "Left",
      "status": "Out",
      "long_comment": "Ohtani was forced to depart Game 2 of the World Series on Saturday due to a left shoulder subluxation suffered on a slide into second base. However, an MRI confirmed that he doesn't have any structural damage and he was able to go through 80 percent of his daily routine Sunday without issue. Ohtani will not be allowed to attempt any stolen bases Monday and perhaps not for the remainder of the series, per Alden Gonzalez of ESPN.com, but he's feeling well enough to give it a go at the plate as the Dodgers try to take a commanding 3-0 series lead.",
      "short_comment": "Ohtani (shoulder) will start at designated hitter and bat leadoff Monday in Game 3 of the World Series versus the Yankees, Bill Plunkett of The Orange County Register reports."
    },
    ...
  ],
  "meta": { "next_cursor": 62089, "per_page": 25 }
}

This endpoint retrieves all player injuries.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/player_injuries

Query Parameters

Parameter Required Description
cursor false The cursor, used for pagination
per_page false The number of results per page. Default to 25. Max is 100
team_ids false Returns players that belong to these team ids. This should be an array: ?team_ids[]=1&team_ids[]=2
player_ids false Returns players that match these ids. This should be an array: ?player_ids[]=1&player_ids[]=2

Active Players

Get All Active Players

curl "https://api.balldontlie.io/mlb/v1/players/active" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const players = await api.mlb.getActivePlayers();
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
players = api.mlb.players.list_active()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 1,
      "first_name": "Ryan",
      "last_name": "Thompson",
      "full_name": "Ryan Thompson",
      "debut_year": 2020,
      "jersey": "81",
      "college": null,
      "position": "Relief Pitcher",
      "active": true,
      "birth_place": "Turner, OR",
      "dob": "26/6/1992",
      "age": 32,
      "height": "6' 5\"",
      "weight": "210 lbs",
      "draft": "2014: Rd 23, Pk 676 (HOU)",
      "bats_throws": "Right/Right",
      "team": {
        "id": 1,
        "slug": "arizona-diamondbacks",
        "abbreviation": "ARI",
        "display_name": "Arizona Diamondbacks",
        "short_display_name": "Diamondbacks",
        "name": "Diamondbacks",
        "location": "Arizona",
        "league": "National",
        "division": "West"
      }
    },
    ...
  ],
  "meta": { "next_cursor": 23, "per_page": 25 }
}

This endpoint retrieves all active players.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/players/active

Query Parameters

Parameter Required Description
cursor false The cursor, used for pagination
per_page false The number of results per page. Default to 25. Max is 100
search false Returns players whose first or last name matches this value. For example, ?search=shohei will return players that have 'shohei' in their first or last name.
first_name false Returns players whose first name matches this value. For example, ?search=shohei will return players that have 'shohei' in their first name.
last_name false Returns players whose last name matches this value. For example, ?search=ohtani will return players that have 'ohtani' in their last name.
team_ids false Returns players that belong to these team ids. This should be an array: ?team_ids[]=1&team_ids[]=2
player_ids false Returns players that match these ids. This should be an array: ?player_ids[]=1&player_ids[]=2

Games

Get All Games

curl "https://api.balldontlie.io/mlb/v1/games" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const games = await api.mlb.getGames();
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
games = api.mlb.games.list()

The above command returns JSON structured like this:

{
  "data": [
    {
      "id": 58590,
      "home_team_name": "New York Yankees",
      "away_team_name": "Los Angeles Dodgers",
      "home_team": {
        "id": 19,
        "slug": "new-york-yankees",
        "abbreviation": "NYY",
        "display_name": "New York Yankees",
        "short_display_name": "Yankees",
        "name": "Yankees",
        "location": "New York",
        "league": "American",
        "division": "East"
      },
      "away_team": {
        "id": 14,
        "slug": "los-angeles-dodgers",
        "abbreviation": "LAD",
        "display_name": "Los Angeles Dodgers",
        "short_display_name": "Dodgers",
        "name": "Dodgers",
        "location": "Los Angeles",
        "league": "National",
        "division": "West"
      },
      "season": 2024,
      "postseason": true,
      "date": "2024-10-30T00:08:00.000Z",
      "home_team_data": {
        "hits": 9,
        "runs": 11,
        "errors": 0,
        "inning_scores": [0, 1, 4, 0, 0, 1, 0, 5]
      },
      "away_team_data": {
        "hits": 6,
        "runs": 4,
        "errors": 1,
        "inning_scores": [2, 0, 0, 0, 2, 0, 0, 0, 0]
      },
      "venue": "Yankee Stadium",
      "attendance": 49354,
      "conference_play": false,
      "status": "STATUS_FINAL",
      "period": 9,
      "clock": 0,
      "display_clock": "0:00",
      "scoring_summary": [
        {
          "play": "Freeman homered to right (343 feet), Betts scored.",
          "inning": "top",
          "period": "1st",
          "away_score": 2,
          "home_score": 0
        },
        {
          "play": "Verdugo grounded out to first, Volpe scored, Wells to third.",
          "inning": "bottom",
          "period": "2nd",
          "away_score": 2,
          "home_score": 1
        },
        {
          "play": "Volpe homered to left center (390 feet), Judge scored, Chisholm Jr. scored and Stanton scored.",
          "inning": "bottom",
          "period": "3rd",
          "away_score": 2,
          "home_score": 5
        },
        {
          "play": "Smith homered to right center (364 feet).",
          "inning": "top",
          "period": "5th",
          "away_score": 3,
          "home_score": 5
        },
        {
          "play": "Freeman grounded into fielder's choice to second, Edman scored, Betts out at second.",
          "inning": "top",
          "period": "5th",
          "away_score": 4,
          "home_score": 5
        },
        {
          "play": "Wells homered to right (384 feet).",
          "inning": "bottom",
          "period": "6th",
          "away_score": 4,
          "home_score": 6
        },
        {
          "play": "Verdugo grounded into fielder's choice to second, Volpe scored, Wells third.",
          "inning": "bottom",
          "period": "8th",
          "away_score": 4,
          "home_score": 7
        },
        {
          "play": "Torres homered to right center (366 feet), Wells scored and Verdugo scored.",
          "inning": "bottom",
          "period": "8th",
          "away_score": 4,
          "home_score": 10
        },
        {
          "play": "Judge singled to left, Soto scored.",
          "inning": "bottom",
          "period": "8th",
          "away_score": 4,
          "home_score": 11
        }
      ]
    },
    ...
  ],
  "meta": {
    "per_page": 25,
    "next_cursor": 7024
  }
}

This endpoint retrieves all games.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/games

Query Parameters

Parameter Required Description
cursor false The cursor, used for pagination
per_page false The number of results per page. Default to 25. Max is 100
dates false Returns games that match these dates. Dates should be formatted in YYYY-MM-DD. This should be an array: ?dates[]=2024-01-01&dates[]=2024-01-02
seasons false Returns games that occurred in these seasons. This should be an array: ?seasons[]=2022&seasons[]=2023
team_ids false Returns games for these team ids. This should be an array: ?team_ids[]=1&team_ids[]=2
posteason false Returns playoffs games when set to true. Returns regular season games when set to false. Returns both when not specified

Get a Specific Game

curl "https://api.balldontlie.io/mlb/v1/games/<ID>" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const game = await api.mlb.getGame(58590);
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
game = api.mlb.games.get(58590)

The above command returns JSON structured like this:

{
  "data": {
    "id": 58590,
    "home_team_name": "New York Yankees",
    "away_team_name": "Los Angeles Dodgers",
    "home_team": {
      "id": 19,
      "slug": "new-york-yankees",
      "abbreviation": "NYY",
      "display_name": "New York Yankees",
      "short_display_name": "Yankees",
      "name": "Yankees",
      "location": "New York",
      "league": "American",
      "division": "East"
    },
    "away_team": {
      "id": 14,
      "slug": "los-angeles-dodgers",
      "abbreviation": "LAD",
      "display_name": "Los Angeles Dodgers",
      "short_display_name": "Dodgers",
      "name": "Dodgers",
      "location": "Los Angeles",
      "league": "National",
      "division": "West"
    },
    "season": 2024,
    "postseason": true,
    "date": "2024-10-30T00:08:00.000Z",
    "home_team_data": {
      "hits": 9,
      "runs": 11,
      "errors": 0,
      "inning_scores": [0, 1, 4, 0, 0, 1, 0, 5]
    },
    "away_team_data": {
      "hits": 6,
      "runs": 4,
      "errors": 1,
      "inning_scores": [2, 0, 0, 0, 2, 0, 0, 0, 0]
    },
    "venue": "Yankee Stadium",
    "attendance": 49354,
    "conference_play": false,
    "status": "STATUS_FINAL",
    "period": 9,
    "clock": 0,
    "display_clock": "0:00",
    "scoring_summary": [
      {
        "play": "Freeman homered to right (343 feet), Betts scored.",
        "inning": "top",
        "period": "1st",
        "away_score": 2,
        "home_score": 0
      },
      {
        "play": "Verdugo grounded out to first, Volpe scored, Wells to third.",
        "inning": "bottom",
        "period": "2nd",
        "away_score": 2,
        "home_score": 1
      },
      {
        "play": "Volpe homered to left center (390 feet), Judge scored, Chisholm Jr. scored and Stanton scored.",
        "inning": "bottom",
        "period": "3rd",
        "away_score": 2,
        "home_score": 5
      },
      {
        "play": "Smith homered to right center (364 feet).",
        "inning": "top",
        "period": "5th",
        "away_score": 3,
        "home_score": 5
      },
      {
        "play": "Freeman grounded into fielder's choice to second, Edman scored, Betts out at second.",
        "inning": "top",
        "period": "5th",
        "away_score": 4,
        "home_score": 5
      },
      {
        "play": "Wells homered to right (384 feet).",
        "inning": "bottom",
        "period": "6th",
        "away_score": 4,
        "home_score": 6
      },
      {
        "play": "Verdugo grounded into fielder's choice to second, Volpe scored, Wells third.",
        "inning": "bottom",
        "period": "8th",
        "away_score": 4,
        "home_score": 7
      },
      {
        "play": "Torres homered to right center (366 feet), Wells scored and Verdugo scored.",
        "inning": "bottom",
        "period": "8th",
        "away_score": 4,
        "home_score": 10
      },
      {
        "play": "Judge singled to left, Soto scored.",
        "inning": "bottom",
        "period": "8th",
        "away_score": 4,
        "home_score": 11
      }
    ]
  }
}

This endpoint retrieves a specific game.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/games/<ID>

URL Parameters

Parameter Required Description
ID true The ID of the game to retrieve

Stats

Get All Stats

curl "https://api.balldontlie.io/mlb/v1/stats"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const stats = await api.mlb.getStats();
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
stats = api.mlb.stats.list()

The above command returns JSON structured like this:

{
  "data": [
    {
      "player": {
        "id": 208,
        "first_name": "Shohei",
        "last_name": "Ohtani",
        "full_name": "Shohei Ohtani",
        "debut_year": 2018,
        "jersey": "17",
        "college": null,
        "position": "Designated Hitter",
        "active": true,
        "birth_place": "Oshu, Japan",
        "dob": "5/7/1994",
        "age": 30,
        "height": "6' 4\"",
        "weight": "210 lbs",
        "draft": null,
        "bats_throws": "Left/Right"
      },
      "game": {
        "id": 58595,
        "home_team_name": "New York Yankees",
        "away_team_name": "Los Angeles Dodgers",
        "home_team": {
          "id": 19,
          "slug": "new-york-yankees",
          "abbreviation": "NYY",
          "display_name": "New York Yankees",
          "short_display_name": "Yankees",
          "name": "Yankees",
          "location": "New York",
          "league": "American",
          "division": "East"
        },
        "away_team": {
          "id": 14,
          "slug": "los-angeles-dodgers",
          "abbreviation": "LAD",
          "display_name": "Los Angeles Dodgers",
          "short_display_name": "Dodgers",
          "name": "Dodgers",
          "location": "Los Angeles",
          "league": "National",
          "division": "West"
        },
        "season": 2024,
        "postseason": true,
        "date": "2024-10-31T00:08:00.000Z",
        "home_team_data": {
          "hits": 8,
          "runs": 6,
          "errors": 3,
          "inning_scores": [3, 1, 1, 0, 0, 1, 0, 0, 0]
        },
        "away_team_data": {
          "hits": 7,
          "runs": 7,
          "errors": 0,
          "inning_scores": [0, 0, 0, 0, 5, 0, 0, 2, 0]
        },
        "venue": "Yankee Stadium",
        "attendance": 49263,
        "conference_play": false,
        "status": "STATUS_FINAL",
        "period": 9,
        "clock": 0,
        "display_clock": "0:00",
        "scoring_summary": [
          {
            "play": "Judge homered to right center (403 feet), Soto scored.",
            "inning": "bottom",
            "period": "1st",
            "away_score": 0,
            "home_score": 2
          },
          {
            "play": "Chisholm Jr. homered to right center (392 feet).",
            "inning": "bottom",
            "period": "1st",
            "away_score": 0,
            "home_score": 3
          },
          {
            "play": "Verdugo singled to right, Volpe scored.",
            "inning": "bottom",
            "period": "2nd",
            "away_score": 0,
            "home_score": 4
          },
          {
            "play": "Stanton homered to right (385 feet).",
            "inning": "bottom",
            "period": "3rd",
            "away_score": 0,
            "home_score": 5
          },
          {
            "play": "Betts reached on infield single to first, E. Hernández scored, Smith to second, Edman to third.",
            "inning": "top",
            "period": "5th",
            "away_score": 1,
            "home_score": 5
          },
          {
            "play": "Freeman singled to center, Edman scored and Smith scored, Betts to third.",
            "inning": "top",
            "period": "5th",
            "away_score": 3,
            "home_score": 5
          },
          {
            "play": "T. Hernández doubled to center, Betts scored and Freeman scored.",
            "inning": "top",
            "period": "5th",
            "away_score": 5,
            "home_score": 5
          },
          {
            "play": "Stanton hit sacrifice fly to center, Soto scored, Chisholm Jr. to second.",
            "inning": "bottom",
            "period": "6th",
            "away_score": 5,
            "home_score": 6
          },
          {
            "play": "Lux hit sacrifice fly to center, E. Hernández scored, Edman to third.",
            "inning": "top",
            "period": "8th",
            "away_score": 6,
            "home_score": 6
          },
          {
            "play": "Betts hit sacrifice fly to center, Edman scored, Smith to third.",
            "inning": "top",
            "period": "8th",
            "away_score": 7,
            "home_score": 6
          }
        ]
      },
      "team_name": "Los Angeles Dodgers",
      "at_bats": 4,
      "runs": 0,
      "hits": 0,
      "rbi": 0,
      "hr": 0,
      "bb": 0,
      "k": 1,
      "avg": 0.23,
      "obp": 0.373,
      "slg": 0.393,
      "ip": null,
      "p_hits": null,
      "p_runs": null,
      "er": null,
      "p_bb": null,
      "p_k": null,
      "p_hr": null,
      "pitch_count": null,
      "strikes": null,
      "era": null
    },
    ...
  ],
  "meta": { "per_page": 25 }
}

This endpoint retrieves all stats.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/stats

Query Parameters

Parameter Required Description
cursor false The page number, used for pagination.
per_page false The number of results returned per call, used for pagination. Max 100.
player_ids false Returns stats for these player ids. This should be an array: ?player_ids[]=1&player_ids[]=2
game_ids false Returns stat for these game ids. This should be an array: ?game_ids[]=1&game_ids[]=2
seasons false Returns stats that occurred in these seasons. This should be an array: ?seasons[]=2022&seasons[]=2023

Season Stats

Get Season Stats

curl "https://api.balldontlie.io/mlb/v1/season_stats"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const stats = await api.mlb.getSeasonStats({
  season: 2023,
});
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
stats = api.mlb.season_stats.list(season=2024)

The above command returns JSON structured like this:

{
  "data": [
    {
      "player": {
        "id": 1106,
        "first_name": "Juan",
        "last_name": "Soto",
        "full_name": "Juan Soto",
        "debut_year": 2018,
        "jersey": "22",
        "college": null,
        "position": "Left Fielder",
        "active": false,
        "birth_place": "Santo Domingo, Dominican Republic",
        "dob": "25/10/1998",
        "age": 26,
        "height": "6' 2\"",
        "weight": "224 lbs",
        "draft": null,
        "bats_throws": "Left/Left",
        "team": {
          "id": 19,
          "slug": "new-york-yankees",
          "abbreviation": "NYY",
          "display_name": "New York Yankees",
          "short_display_name": "Yankees",
          "name": "Yankees",
          "location": "New York",
          "league": "American",
          "division": "East"
        }
      },
      "team_name": "Yankees",
      "season": 2024,
      "postseason": false,
      "batting_gp": 157,
      "batting_ab": 576,
      "batting_r": 128,
      "batting_h": 166,
      "batting_avg": 0.2881944,
      "batting_2b": 31,
      "batting_3b": 4,
      "batting_hr": 41,
      "batting_rbi": 109,
      "batting_tb": 328,
      "batting_bb": 129,
      "batting_so": 119,
      "batting_sb": 7,
      "batting_obp": 0.4193548,
      "batting_slg": 0.5694444,
      "batting_ops": 0.9887992,
      "batting_war": 7.92,
      "pitching_gp": null,
      "pitching_gs": null,
      "pitching_qs": null,
      "pitching_w": null,
      "pitching_l": null,
      "pitching_era": null,
      "pitching_sv": null,
      "pitching_hld": null,
      "pitching_ip": null,
      "pitching_h": null,
      "pitching_er": null,
      "pitching_hr": null,
      "pitching_bb": null,
      "pitching_whip": null,
      "pitching_k": null,
      "pitching_k_per_9": null,
      "pitching_war": null,
      "fielding_gp": 157,
      "fielding_gs": 0,
      "fielding_fip": 0,
      "fielding_tc": 314,
      "fielding_po": 302,
      "fielding_a": 10,
      "fielding_fp": 0.9936306,
      "fielding_e": 2,
      "fielding_dp": 0,
      "fielding_rf": 0,
      "fielding_dwar": -0.53,
      "fielding_pb": 0,
      "fielding_cs": 0,
      "fielding_cs_percent": 0,
      "fielding_sba": 0
    },
    ...
  ],
  "meta": { "next_cursor": 83571, "per_page": 25 }
}

HTTP Request

GET https://api.balldontlie.io/mlb/v1/season_stats

Query Parameters

Parameter Required Description
season true Returns season stats for this season
player_ids false Returns season stats for these players. This should be an array: player_ids[]=1
team_id false Returns season stats for this team
postseason false Returns season stats for postseason or regular season. Defaults to false.
sort_by false Returns season stats sorted by this attribute. Most attributes in the response body can be specified
sort_order false Returns season stats sorted in asc or desc

Team Standings

Get Team Standings

curl "https://api.balldontlie.io/mlb/v1/standings?season=2024" \
  -H "Authorization: YOUR_API_KEY"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const standings = await api.mlb.getStandings({ season: 2024 });
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
standings = api.mlb.standings.get(season=2024)

The above command returns JSON structured like this:

{
  "data": [
    {
      "team": {
        "id": 19,
        "slug": "new-york-yankees",
        "abbreviation": "NYY",
        "display_name": "New York Yankees",
        "short_display_name": "Yankees",
        "name": "Yankees",
        "location": "New York",
        "league": "American",
        "division": "East"
      },
      "league_name": "American League",
      "league_short_name": "AL",
      "division_name": "American League East",
      "division_short_name": "AL East",
      "team_name": "New York Yankees",
      "ot_losses": 8,
      "ot_wins": 8,
      "avg_points_against": 4.123457,
      "avg_points_for": 5.0308642,
      "clincher": "*",
      "differential": 0.9000000000000004,
      "division_win_percent": 0.5,
      "games_behind": 0,
      "games_played": 162,
      "league_win_percent": 0.61206895,
      "losses": 68,
      "playoff_seed": 1,
      "point_differential": 147,
      "game_back_points": 13,
      "points_against": 668,
      "points_for": 815,
      "streak": 1,
      "ties": 0,
      "win_percent": 0.5802469,
      "wins": 94,
      "division_games_behind": 0,
      "division_percent": 100,
      "division_tied": 0,
      "home_losses": 37,
      "home_ties": 0,
      "home_wins": 44,
      "magic_number_division": -2,
      "magic_number_wildcard": -7,
      "playoff_percent": 100,
      "road_losses": 31,
      "road_ties": 0,
      "road_wins": 50,
      "wildcard_percent": 0,
      "total": "94-68",
      "home": "44-37",
      "road": "50-31",
      "intra_division": "26-26",
      "intra_league": "71-45",
      "last_ten_games": "5-5",
      "season": 2024
    },
    ...
  ]
}

This endpoint retrieves regular season team standings.

HTTP Request

GET https://api.balldontlie.io/mlb/v1/standings

Query Parameters

Parameter Required Description
season true Returns regular season standings for the specified season. For example, ?season=2023 will return the team standings for the 2023-24 season.

Team Season Stats

Get Team Season Stats

curl "https://api.balldontlie.io/mlb/v1/teams/season_stats?season=2024"
import { BalldontlieAPI } from "@balldontlie/sdk";

const api = new BalldontlieAPI({ apiKey: "YOUR_API_KEY" });
const stats = await api.mlb.getTeamSeasonStats({
  season: 2024,
});
from balldontlie import BalldontlieAPI

api = BalldontlieAPI(api_key="YOUR_API_KEY")
stats = api.mlb.team_season_stats.list(season=2024)

The above command returns JSON structured like this:

{
  "data": [
    {
      "team": {
        "id": 23,
        "slug": "san-diego-padres",
        "abbreviation": "SD",
        "display_name": "San Diego Padres",
        "short_display_name": "Padres",
        "name": "Padres",
        "location": "San Diego",
        "league": "National",
        "division": "West"
      },
      "team_name": "San Diego Padres",
      "postseason": false,
      "season": 2024,
      "gp": 162,
      "batting_ab": 5526,
      "batting_r": 760,
      "batting_h": 1456,
      "batting_2b": 259,
      "batting_3b": 18,
      "batting_hr": 190,
      "batting_rbi": 726,
      "batting_tb": 2321,
      "batting_bb": 458,
      "batting_so": 1077,
      "batting_sb": 120,
      "batting_avg": 0.26348174,
      "batting_obp": 0.3244935,
      "batting_slg": 0.42001447,
      "batting_ops": 0.74450797,
      "pitching_w": 93,
      "pitching_l": 69,
      "pitching_era": 3.858036,
      "pitching_sv": 44,
      "pitching_cg": 1,
      "pitching_sho": 16,
      "pitching_qs": 65,
      "pitching_ip": 1439.1,
      "pitching_h": 1296,
      "pitching_er": 617,
      "pitching_hr": 169,
      "pitching_bb": 462,
      "pitching_k": 1453,
      "pitching_oba": 0.23845446,
      "pitching_whip": 1.2213987,
      "fielding_e": 75,
      "fielding_fp": 0.98681897,
      "fielding_tc": 5690,
      "fielding_po": 4318,
      "fielding_a": 1297
    },
    ...
  ],
  "meta": { "next_cursor": 83571, "per_page": 25 }
}

HTTP Request

GET https://api.balldontlie.io/mlb/v1/teams/season_stats

Query Parameters

Parameter Required Description
season true Returns season stats for this season
team_id false Returns season stats for this team
postseason false Returns season stats for postseason or regular season. Defaults to false.

Player Splits

Get Player Splits

curl "https://api.balldontlie.io/mlb/v1/players/splits?player_id=208&season=2025" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/mlb/v1/players/splits?player_id=1106&season=2024",
  {
    headers: {
      Authorization: "YOUR_API_KEY",
    },
  }
);
const splits = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/mlb/v1/players/splits",
    params={"player_id": 1106, "season": 2024},
    headers={"Authorization": "YOUR_API_KEY"}
)
splits = response.json()

The above command returns JSON structured like this:

{
  "data": {
    "byArena": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "All Splits",
        "split_abbreviation": "Total",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 2.87,
        "wins": 1,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 14,
        "games_started": 14,
        "complete_games": 0,
        "innings_pitched": 47,
        "hits_allowed": 40,
        "runs_allowed": 15,
        "earned_runs": 15,
        "home_runs_allowed": 3,
        "walks_allowed": 9,
        "strikeouts_pitched": 62,
        "opponent_avg": 0.227
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "American Family Field",
        "split_abbreviation": "American Family Field",
        "at_bats": 10,
        "runs": 2,
        "hits": 3,
        "doubles": 0,
        "triples": 0,
        "home_runs": 1,
        "rbis": 2,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.3,
        "obp": 0.462,
        "slg": 0.6,
        "ops": 1.062,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Angel Stadium",
        "split_abbreviation": "Angel Stadium",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 8.31,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 4.1,
        "hits_allowed": 5,
        "runs_allowed": 4,
        "earned_runs": 4,
        "home_runs_allowed": 1,
        "walks_allowed": 0,
        "strikeouts_pitched": 7,
        "opponent_avg": 0.278
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Angel Stadium",
        "split_abbreviation": "Angel Stadium",
        "at_bats": 10,
        "runs": 4,
        "hits": 3,
        "doubles": 0,
        "triples": 1,
        "home_runs": 2,
        "rbis": 2,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.3,
        "obp": 0.5,
        "slg": 1.1,
        "ops": 1.6,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "AT&T Park",
        "split_abbreviation": "AT&T Park",
        "at_bats": 24,
        "runs": 7,
        "hits": 6,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 7,
        "hit_by_pitch": 0,
        "strikeouts": 5,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.25,
        "obp": 0.419,
        "slg": 0.5,
        "ops": 0.919,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "AT&T Park",
        "split_abbreviation": "AT&T Park",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 3,
        "hits_allowed": 1,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 4,
        "opponent_avg": 0.1
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Busch Stadium II",
        "split_abbreviation": "Busch Stadium II",
        "at_bats": 12,
        "runs": 1,
        "hits": 3,
        "doubles": 1,
        "triples": 0,
        "home_runs": 0,
        "rbis": 0,
        "walks": 1,
        "hit_by_pitch": 1,
        "strikeouts": 0,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.25,
        "obp": 0.357,
        "slg": 0.333,
        "ops": 0.69,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Camden Yards",
        "split_abbreviation": "Camden Yards",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 3.2,
        "hits_allowed": 3,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 5,
        "opponent_avg": 0.214
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Camden Yards",
        "split_abbreviation": "Camden Yards",
        "at_bats": 10,
        "runs": 2,
        "hits": 3,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 2,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.3,
        "obp": 0.5,
        "slg": 0.9,
        "ops": 1.4,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Chase Field",
        "split_abbreviation": "Chase Field",
        "at_bats": 32,
        "runs": 7,
        "hits": 9,
        "doubles": 2,
        "triples": 1,
        "home_runs": 3,
        "rbis": 8,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 8,
        "stolen_bases": 0,
        "caught_stealing": 1,
        "avg": 0.281,
        "obp": 0.324,
        "slg": 0.688,
        "ops": 1.011,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Chase Field",
        "split_abbreviation": "Chase Field",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 6,
        "hits_allowed": 5,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 8,
        "opponent_avg": 0.227
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Citi Field",
        "split_abbreviation": "Citi Field",
        "at_bats": 13,
        "runs": 2,
        "hits": 2,
        "doubles": 0,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 5,
        "stolen_bases": 0,
        "caught_stealing": 1,
        "avg": 0.154,
        "obp": 0.214,
        "slg": 0.385,
        "ops": 0.599,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Citizens Bank Park",
        "split_abbreviation": "Citizens Bank Park",
        "at_bats": 11,
        "runs": 1,
        "hits": 1,
        "doubles": 0,
        "triples": 0,
        "home_runs": 0,
        "rbis": 0,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 5,
        "stolen_bases": 0,
        "caught_stealing": 1,
        "avg": 0.091,
        "obp": 0.231,
        "slg": 0.091,
        "ops": 0.322,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Coors Field",
        "split_abbreviation": "Coors Field",
        "at_bats": 21,
        "runs": 6,
        "hits": 7,
        "doubles": 1,
        "triples": 0,
        "home_runs": 3,
        "rbis": 6,
        "walks": 5,
        "hit_by_pitch": 0,
        "strikeouts": 2,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.333,
        "obp": 0.462,
        "slg": 0.81,
        "ops": 1.271,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Coors Field",
        "split_abbreviation": "Coors Field",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 11.25,
        "wins": 0,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 4,
        "hits_allowed": 9,
        "runs_allowed": 5,
        "earned_runs": 5,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 3,
        "opponent_avg": 0.474
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Dodger Stadium",
        "split_abbreviation": "Dodger Stadium",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 1.71,
        "wins": 1,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 7,
        "games_started": 7,
        "complete_games": 0,
        "innings_pitched": 21,
        "hits_allowed": 11,
        "runs_allowed": 4,
        "earned_runs": 4,
        "home_runs_allowed": 2,
        "walks_allowed": 4,
        "strikeouts_pitched": 30,
        "opponent_avg": 0.151
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Dodger Stadium",
        "split_abbreviation": "Dodger Stadium",
        "at_bats": 312,
        "runs": 79,
        "hits": 90,
        "doubles": 11,
        "triples": 3,
        "home_runs": 29,
        "rbis": 57,
        "walks": 50,
        "hit_by_pitch": 2,
        "strikeouts": 94,
        "stolen_bases": 15,
        "caught_stealing": 2,
        "avg": 0.288,
        "obp": 0.388,
        "slg": 0.622,
        "ops": 1.01,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Fenway Park",
        "split_abbreviation": "Fenway Park",
        "at_bats": 12,
        "runs": 2,
        "hits": 4,
        "doubles": 0,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 6,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.333,
        "obp": 0.429,
        "slg": 0.583,
        "ops": 1.012,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Great American",
        "split_abbreviation": "Great American",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 6,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 3,
        "hits_allowed": 5,
        "runs_allowed": 2,
        "earned_runs": 2,
        "home_runs_allowed": 0,
        "walks_allowed": 2,
        "strikeouts_pitched": 4,
        "opponent_avg": 0.357
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Great American",
        "split_abbreviation": "Great American",
        "at_bats": 13,
        "runs": 1,
        "hits": 1,
        "doubles": 1,
        "triples": 0,
        "home_runs": 0,
        "rbis": 2,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 5,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.077,
        "obp": 0.2,
        "slg": 0.154,
        "ops": 0.354,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byArena",
        "split_name": "Kauffman Stadium",
        "split_abbreviation": "Kauffman Stadium",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 2,
        "hits_allowed": 1,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 1,
        "opponent_avg": 0.167
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Kauffman Stadium",
        "split_abbreviation": "Kauffman Stadium",
        "at_bats": 11,
        "runs": 2,
        "hits": 2,
        "doubles": 0,
        "triples": 1,
        "home_runs": 1,
        "rbis": 2,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 5,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.182,
        "obp": 0.25,
        "slg": 0.636,
        "ops": 0.886,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Marlins Park",
        "split_abbreviation": "Marlins Park",
        "at_bats": 11,
        "runs": 5,
        "hits": 4,
        "doubles": 1,
        "triples": 1,
        "home_runs": 2,
        "rbis": 4,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 1,
        "caught_stealing": 1,
        "avg": 0.364,
        "obp": 0.533,
        "slg": 1.182,
        "ops": 1.715,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Nationals Park",
        "split_abbreviation": "Nationals Park",
        "at_bats": 13,
        "runs": 3,
        "hits": 6,
        "doubles": 0,
        "triples": 1,
        "home_runs": 1,
        "rbis": 2,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.462,
        "obp": 0.533,
        "slg": 0.846,
        "ops": 1.379,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "PETCO Park",
        "split_abbreviation": "PETCO Park",
        "at_bats": 24,
        "runs": 4,
        "hits": 4,
        "doubles": 1,
        "triples": 1,
        "home_runs": 1,
        "rbis": 1,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.167,
        "obp": 0.259,
        "slg": 0.417,
        "ops": 0.676,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "PNC Park",
        "split_abbreviation": "PNC Park",
        "at_bats": 13,
        "runs": 1,
        "hits": 5,
        "doubles": 3,
        "triples": 0,
        "home_runs": 1,
        "rbis": 2,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.385,
        "obp": 0.429,
        "slg": 0.846,
        "ops": 1.275,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Progressive Field",
        "split_abbreviation": "Progressive Field",
        "at_bats": 9,
        "runs": 5,
        "hits": 2,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 5,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.222,
        "obp": 0.5,
        "slg": 0.889,
        "ops": 1.389,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Safeco Field",
        "split_abbreviation": "Safeco Field",
        "at_bats": 8,
        "runs": 2,
        "hits": 3,
        "doubles": 1,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 3,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.375,
        "obp": 0.444,
        "slg": 0.875,
        "ops": 1.319,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byArena",
        "split_name": "Wrigley Field",
        "split_abbreviation": "Wrigley Field",
        "at_bats": 9,
        "runs": 2,
        "hits": 2,
        "doubles": 0,
        "triples": 0,
        "home_runs": 0,
        "rbis": 0,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.222,
        "obp": 0.3,
        "slg": 0.222,
        "ops": 0.522,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ],
    "byBattingOrder": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBattingOrder",
        "split_name": "Batting #1",
        "split_abbreviation": "Batting #1",
        "at_bats": 570,
        "runs": 139,
        "hits": 162,
        "doubles": 24,
        "triples": 9,
        "home_runs": 51,
        "rbis": 93,
        "walks": 103,
        "hit_by_pitch": 3,
        "strikeouts": 168,
        "stolen_bases": 20,
        "caught_stealing": 6,
        "avg": 0.284,
        "obp": 0.395,
        "slg": 0.626,
        "ops": 1.022,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBattingOrder",
        "split_name": "Batting #2",
        "split_abbreviation": "Batting #2",
        "at_bats": 41,
        "runs": 7,
        "hits": 10,
        "doubles": 1,
        "triples": 0,
        "home_runs": 4,
        "rbis": 9,
        "walks": 6,
        "hit_by_pitch": 0,
        "strikeouts": 19,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.244,
        "obp": 0.34,
        "slg": 0.561,
        "ops": 0.901,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ],
    "byBreakdown": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byBreakdown",
        "split_name": "Away",
        "split_abbreviation": "Away",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 3.81,
        "wins": 0,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 7,
        "games_started": 7,
        "complete_games": 0,
        "innings_pitched": 26,
        "hits_allowed": 29,
        "runs_allowed": 11,
        "earned_runs": 11,
        "home_runs_allowed": 1,
        "walks_allowed": 5,
        "strikeouts_pitched": 32,
        "opponent_avg": 0.282
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBreakdown",
        "split_name": "Away",
        "split_abbreviation": "Away",
        "at_bats": 299,
        "runs": 67,
        "hits": 82,
        "doubles": 14,
        "triples": 6,
        "home_runs": 26,
        "rbis": 45,
        "walks": 59,
        "hit_by_pitch": 1,
        "strikeouts": 93,
        "stolen_bases": 5,
        "caught_stealing": 4,
        "avg": 0.274,
        "obp": 0.396,
        "slg": 0.622,
        "ops": 1.018,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byBreakdown",
        "split_name": "Day",
        "split_abbreviation": "Day",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0.75,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 5,
        "games_started": 5,
        "complete_games": 0,
        "innings_pitched": 12,
        "hits_allowed": 5,
        "runs_allowed": 1,
        "earned_runs": 1,
        "home_runs_allowed": 0,
        "walks_allowed": 2,
        "strikeouts_pitched": 18,
        "opponent_avg": 0.125
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBreakdown",
        "split_name": "Day",
        "split_abbreviation": "Day",
        "at_bats": 164,
        "runs": 40,
        "hits": 48,
        "doubles": 4,
        "triples": 3,
        "home_runs": 12,
        "rbis": 22,
        "walks": 28,
        "hit_by_pitch": 1,
        "strikeouts": 52,
        "stolen_bases": 5,
        "caught_stealing": 2,
        "avg": 0.293,
        "obp": 0.399,
        "slg": 0.573,
        "ops": 0.972,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBreakdown",
        "split_name": "Home",
        "split_abbreviation": "Home",
        "at_bats": 312,
        "runs": 79,
        "hits": 90,
        "doubles": 11,
        "triples": 3,
        "home_runs": 29,
        "rbis": 57,
        "walks": 50,
        "hit_by_pitch": 2,
        "strikeouts": 94,
        "stolen_bases": 15,
        "caught_stealing": 2,
        "avg": 0.288,
        "obp": 0.388,
        "slg": 0.622,
        "ops": 1.01,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byBreakdown",
        "split_name": "Home",
        "split_abbreviation": "Home",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 1.71,
        "wins": 1,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 7,
        "games_started": 7,
        "complete_games": 0,
        "innings_pitched": 21,
        "hits_allowed": 11,
        "runs_allowed": 4,
        "earned_runs": 4,
        "home_runs_allowed": 2,
        "walks_allowed": 4,
        "strikeouts_pitched": 30,
        "opponent_avg": 0.151
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byBreakdown",
        "split_name": "Night",
        "split_abbreviation": "Night",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 3.6,
        "wins": 1,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 9,
        "games_started": 9,
        "complete_games": 0,
        "innings_pitched": 35,
        "hits_allowed": 35,
        "runs_allowed": 14,
        "earned_runs": 14,
        "home_runs_allowed": 3,
        "walks_allowed": 7,
        "strikeouts_pitched": 44,
        "opponent_avg": 0.257
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBreakdown",
        "split_name": "Night",
        "split_abbreviation": "Night",
        "at_bats": 447,
        "runs": 106,
        "hits": 124,
        "doubles": 21,
        "triples": 6,
        "home_runs": 43,
        "rbis": 80,
        "walks": 81,
        "hit_by_pitch": 2,
        "strikeouts": 135,
        "stolen_bases": 15,
        "caught_stealing": 4,
        "avg": 0.277,
        "obp": 0.389,
        "slg": 0.64,
        "ops": 1.029,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBreakdown",
        "split_name": "vs. Left",
        "split_abbreviation": "vs. Left",
        "at_bats": 222,
        "runs": 29,
        "hits": 62,
        "doubles": 8,
        "triples": 4,
        "home_runs": 15,
        "rbis": 33,
        "walks": 22,
        "hit_by_pitch": 0,
        "strikeouts": 67,
        "stolen_bases": 1,
        "caught_stealing": 3,
        "avg": 0.279,
        "obp": 0.344,
        "slg": 0.554,
        "ops": 0.898,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byBreakdown",
        "split_name": "vs. Right",
        "split_abbreviation": "vs. Right",
        "at_bats": 389,
        "runs": 117,
        "hits": 110,
        "doubles": 17,
        "triples": 5,
        "home_runs": 40,
        "rbis": 69,
        "walks": 87,
        "hit_by_pitch": 3,
        "strikeouts": 120,
        "stolen_bases": 19,
        "caught_stealing": 3,
        "avg": 0.283,
        "obp": 0.416,
        "slg": 0.661,
        "ops": 1.076,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ],
    "byCount": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 0-0",
        "split_abbreviation": "0-0 count",
        "at_bats": 85,
        "runs": 0,
        "hits": 31,
        "doubles": 4,
        "triples": 1,
        "home_runs": 10,
        "rbis": 18,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 5,
        "caught_stealing": 2,
        "avg": 0.365,
        "obp": 0.36,
        "slg": 0.788,
        "ops": 1.149,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 0-1",
        "split_abbreviation": "0-1 Count",
        "at_bats": 39,
        "runs": 0,
        "hits": 10,
        "doubles": 4,
        "triples": 1,
        "home_runs": 1,
        "rbis": 10,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 2,
        "caught_stealing": 1,
        "avg": 0.256,
        "obp": 0.256,
        "slg": 0.487,
        "ops": 0.744,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 0-2",
        "split_abbreviation": "0-2 Count",
        "at_bats": 59,
        "runs": 0,
        "hits": 11,
        "doubles": 2,
        "triples": 1,
        "home_runs": 3,
        "rbis": 4,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 25,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.186,
        "obp": 0.186,
        "slg": 0.407,
        "ops": 0.593,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 1-0",
        "split_abbreviation": "1-0 Count",
        "at_bats": 32,
        "runs": 0,
        "hits": 19,
        "doubles": 1,
        "triples": 0,
        "home_runs": 7,
        "rbis": 11,
        "walks": 0,
        "hit_by_pitch": 1,
        "strikeouts": 0,
        "stolen_bases": 5,
        "caught_stealing": 1,
        "avg": 0.594,
        "obp": 0.606,
        "slg": 1.281,
        "ops": 1.887,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 1-1",
        "split_abbreviation": "1-1 Count",
        "at_bats": 53,
        "runs": 0,
        "hits": 26,
        "doubles": 3,
        "triples": 2,
        "home_runs": 7,
        "rbis": 17,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 0,
        "caught_stealing": 1,
        "avg": 0.491,
        "obp": 0.481,
        "slg": 1.019,
        "ops": 1.5,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 1-2",
        "split_abbreviation": "1-2 Count",
        "at_bats": 85,
        "runs": 0,
        "hits": 12,
        "doubles": 2,
        "triples": 0,
        "home_runs": 5,
        "rbis": 7,
        "walks": 0,
        "hit_by_pitch": 1,
        "strikeouts": 53,
        "stolen_bases": 3,
        "caught_stealing": 1,
        "avg": 0.141,
        "obp": 0.151,
        "slg": 0.341,
        "ops": 0.492,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 2-0",
        "split_abbreviation": "2-0 Count",
        "at_bats": 10,
        "runs": 0,
        "hits": 5,
        "doubles": 1,
        "triples": 0,
        "home_runs": 4,
        "rbis": 8,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.5,
        "obp": 0.5,
        "slg": 1.8,
        "ops": 2.3,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 2-1",
        "split_abbreviation": "2-1 Count",
        "at_bats": 37,
        "runs": 0,
        "hits": 14,
        "doubles": 2,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.378,
        "obp": 0.378,
        "slg": 0.595,
        "ops": 0.973,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 2-2",
        "split_abbreviation": "2-2 Count",
        "at_bats": 121,
        "runs": 0,
        "hits": 23,
        "doubles": 3,
        "triples": 2,
        "home_runs": 6,
        "rbis": 9,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 65,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.19,
        "obp": 0.19,
        "slg": 0.397,
        "ops": 0.587,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 3-0",
        "split_abbreviation": "3-0 Count",
        "at_bats": 1,
        "runs": 0,
        "hits": 0,
        "doubles": 0,
        "triples": 0,
        "home_runs": 0,
        "rbis": 1,
        "walks": 32,
        "hit_by_pitch": 1,
        "strikeouts": 0,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0,
        "obp": 0.971,
        "slg": 0,
        "ops": 0.971,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 3-1",
        "split_abbreviation": "3-1 Count",
        "at_bats": 11,
        "runs": 0,
        "hits": 6,
        "doubles": 0,
        "triples": 1,
        "home_runs": 4,
        "rbis": 5,
        "walks": 32,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.545,
        "obp": 0.884,
        "slg": 1.818,
        "ops": 2.702,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byCount",
        "split_name": "Count 3-2",
        "split_abbreviation": "3-2 Count",
        "at_bats": 78,
        "runs": 0,
        "hits": 15,
        "doubles": 3,
        "triples": 1,
        "home_runs": 6,
        "rbis": 9,
        "walks": 45,
        "hit_by_pitch": 0,
        "strikeouts": 44,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.192,
        "obp": 0.488,
        "slg": 0.487,
        "ops": 0.975,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ],
    "byDayMonth": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "April",
        "split_abbreviation": "April",
        "at_bats": 94,
        "runs": 23,
        "hits": 27,
        "doubles": 3,
        "triples": 3,
        "home_runs": 5,
        "rbis": 8,
        "walks": 13,
        "hit_by_pitch": 0,
        "strikeouts": 28,
        "stolen_bases": 7,
        "caught_stealing": 1,
        "avg": 0.287,
        "obp": 0.374,
        "slg": 0.543,
        "ops": 0.916,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "August",
        "split_abbreviation": "August",
        "at_bats": 98,
        "runs": 24,
        "hits": 30,
        "doubles": 4,
        "triples": 1,
        "home_runs": 7,
        "rbis": 12,
        "walks": 23,
        "hit_by_pitch": 0,
        "strikeouts": 28,
        "stolen_bases": 4,
        "caught_stealing": 2,
        "avg": 0.306,
        "obp": 0.438,
        "slg": 0.582,
        "ops": 1.02,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "August",
        "split_abbreviation": "August",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 5.71,
        "wins": 1,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 4,
        "games_started": 4,
        "complete_games": 0,
        "innings_pitched": 17.1,
        "hits_allowed": 18,
        "runs_allowed": 11,
        "earned_runs": 11,
        "home_runs_allowed": 2,
        "walks_allowed": 2,
        "strikeouts_pitched": 27,
        "opponent_avg": 0.265
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "July",
        "split_abbreviation": "July",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 2.45,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 4,
        "games_started": 4,
        "complete_games": 0,
        "innings_pitched": 11,
        "hits_allowed": 11,
        "runs_allowed": 3,
        "earned_runs": 3,
        "home_runs_allowed": 1,
        "walks_allowed": 4,
        "strikeouts_pitched": 14,
        "opponent_avg": 0.256
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "July",
        "split_abbreviation": "July",
        "at_bats": 93,
        "runs": 18,
        "hits": 19,
        "doubles": 1,
        "triples": 0,
        "home_runs": 9,
        "rbis": 19,
        "walks": 16,
        "hit_by_pitch": 0,
        "strikeouts": 32,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.204,
        "obp": 0.321,
        "slg": 0.505,
        "ops": 0.826,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "June",
        "split_abbreviation": "June",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 2.25,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 3,
        "games_started": 3,
        "complete_games": 0,
        "innings_pitched": 4,
        "hits_allowed": 3,
        "runs_allowed": 1,
        "earned_runs": 1,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 3,
        "opponent_avg": 0.214
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "June",
        "split_abbreviation": "June",
        "at_bats": 102,
        "runs": 19,
        "hits": 27,
        "doubles": 3,
        "triples": 3,
        "home_runs": 7,
        "rbis": 17,
        "walks": 15,
        "hit_by_pitch": 3,
        "strikeouts": 33,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.265,
        "obp": 0.372,
        "slg": 0.559,
        "ops": 0.931,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "Last 15 Days",
        "split_abbreviation": "Last 15 Days",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 2,
        "games_started": 2,
        "complete_games": 0,
        "innings_pitched": 11,
        "hits_allowed": 5,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 13,
        "opponent_avg": 0.135
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "Last 15 Days",
        "split_abbreviation": "Last 15 Days",
        "at_bats": 48,
        "runs": 11,
        "hits": 14,
        "doubles": 4,
        "triples": 1,
        "home_runs": 6,
        "rbis": 9,
        "walks": 6,
        "hit_by_pitch": 0,
        "strikeouts": 18,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.292,
        "obp": 0.37,
        "slg": 0.792,
        "ops": 1.162,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "Last 30 Days",
        "split_abbreviation": "Last 30 Days",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 3,
        "games_started": 3,
        "complete_games": 0,
        "innings_pitched": 14.2,
        "hits_allowed": 8,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 2,
        "strikeouts_pitched": 18,
        "opponent_avg": 0.157
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "Last 30 Days",
        "split_abbreviation": "Last 30 Days",
        "at_bats": 97,
        "runs": 23,
        "hits": 30,
        "doubles": 8,
        "triples": 1,
        "home_runs": 10,
        "rbis": 17,
        "walks": 18,
        "hit_by_pitch": 0,
        "strikeouts": 30,
        "stolen_bases": 3,
        "caught_stealing": 0,
        "avg": 0.309,
        "obp": 0.417,
        "slg": 0.722,
        "ops": 1.139,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "Last 7 Days",
        "split_abbreviation": "Last seven days",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 6,
        "hits_allowed": 5,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 8,
        "opponent_avg": 0.227
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "Last 7 Days",
        "split_abbreviation": "Last seven days",
        "at_bats": 21,
        "runs": 5,
        "hits": 5,
        "doubles": 1,
        "triples": 1,
        "home_runs": 2,
        "rbis": 3,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.238,
        "obp": 0.304,
        "slg": 0.667,
        "ops": 0.971,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "March",
        "split_abbreviation": "March",
        "at_bats": 21,
        "runs": 9,
        "hits": 6,
        "doubles": 1,
        "triples": 0,
        "home_runs": 2,
        "rbis": 2,
        "walks": 7,
        "hit_by_pitch": 0,
        "strikeouts": 6,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.286,
        "obp": 0.464,
        "slg": 0.619,
        "ops": 1.083,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "May",
        "split_abbreviation": "May",
        "at_bats": 110,
        "runs": 31,
        "hits": 34,
        "doubles": 5,
        "triples": 1,
        "home_runs": 15,
        "rbis": 27,
        "walks": 17,
        "hit_by_pitch": 0,
        "strikeouts": 31,
        "stolen_bases": 2,
        "caught_stealing": 3,
        "avg": 0.309,
        "obp": 0.398,
        "slg": 0.782,
        "ops": 1.18,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byDayMonth",
        "split_name": "September",
        "split_abbreviation": "September",
        "at_bats": 93,
        "runs": 22,
        "hits": 29,
        "doubles": 8,
        "triples": 1,
        "home_runs": 10,
        "rbis": 17,
        "walks": 18,
        "hit_by_pitch": 0,
        "strikeouts": 29,
        "stolen_bases": 3,
        "caught_stealing": 0,
        "avg": 0.312,
        "obp": 0.423,
        "slg": 0.742,
        "ops": 1.165,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byDayMonth",
        "split_name": "September",
        "split_abbreviation": "September",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 3,
        "games_started": 3,
        "complete_games": 0,
        "innings_pitched": 14.2,
        "hits_allowed": 8,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 2,
        "strikeouts_pitched": 18,
        "opponent_avg": 0.157
      }
    ],
    "byOpponent": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Arizona Diamondbacks",
        "split_abbreviation": "vs. ARI",
        "at_bats": 54,
        "runs": 10,
        "hits": 13,
        "doubles": 3,
        "triples": 1,
        "home_runs": 4,
        "rbis": 9,
        "walks": 5,
        "hit_by_pitch": 0,
        "strikeouts": 12,
        "stolen_bases": 1,
        "caught_stealing": 1,
        "avg": 0.241,
        "obp": 0.305,
        "slg": 0.556,
        "ops": 0.861,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Arizona Diamondbacks",
        "split_abbreviation": "vs. ARI",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 6,
        "hits_allowed": 5,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 8,
        "opponent_avg": 0.227
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Atlanta Braves",
        "split_abbreviation": "vs. ATL",
        "at_bats": 23,
        "runs": 6,
        "hits": 8,
        "doubles": 1,
        "triples": 0,
        "home_runs": 2,
        "rbis": 2,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.348,
        "obp": 0.444,
        "slg": 0.652,
        "ops": 1.097,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Baltimore Orioles",
        "split_abbreviation": "vs. BAL",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 3.2,
        "hits_allowed": 3,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 5,
        "opponent_avg": 0.214
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Baltimore Orioles",
        "split_abbreviation": "vs. BAL",
        "at_bats": 10,
        "runs": 2,
        "hits": 3,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 2,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.3,
        "obp": 0.5,
        "slg": 0.9,
        "ops": 1.4,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Boston Red Sox",
        "split_abbreviation": "vs. BOS",
        "at_bats": 12,
        "runs": 2,
        "hits": 4,
        "doubles": 0,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 6,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.333,
        "obp": 0.429,
        "slg": 0.583,
        "ops": 1.012,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Chicago Cubs",
        "split_abbreviation": "vs. CHC",
        "at_bats": 29,
        "runs": 5,
        "hits": 6,
        "doubles": 1,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 8,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.207,
        "obp": 0.281,
        "slg": 0.345,
        "ops": 0.626,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Chicago White Sox",
        "split_abbreviation": "vs. CHW",
        "at_bats": 11,
        "runs": 4,
        "hits": 2,
        "doubles": 0,
        "triples": 0,
        "home_runs": 1,
        "rbis": 2,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 3,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.182,
        "obp": 0.308,
        "slg": 0.455,
        "ops": 0.762,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Cincinnati Reds",
        "split_abbreviation": "vs. CIN",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 3.38,
        "wins": 1,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 2,
        "games_started": 2,
        "complete_games": 0,
        "innings_pitched": 8,
        "hits_allowed": 7,
        "runs_allowed": 3,
        "earned_runs": 3,
        "home_runs_allowed": 1,
        "walks_allowed": 4,
        "strikeouts_pitched": 13,
        "opponent_avg": 0.226
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Cincinnati Reds",
        "split_abbreviation": "vs. CIN",
        "at_bats": 25,
        "runs": 2,
        "hits": 3,
        "doubles": 1,
        "triples": 0,
        "home_runs": 0,
        "rbis": 3,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.12,
        "obp": 0.241,
        "slg": 0.16,
        "ops": 0.401,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Cleveland Indians",
        "split_abbreviation": "vs. CLE",
        "at_bats": 9,
        "runs": 5,
        "hits": 2,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 5,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.222,
        "obp": 0.5,
        "slg": 0.889,
        "ops": 1.389,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Colorado Rockies",
        "split_abbreviation": "vs. COL",
        "at_bats": 44,
        "runs": 16,
        "hits": 15,
        "doubles": 2,
        "triples": 0,
        "home_runs": 5,
        "rbis": 11,
        "walks": 9,
        "hit_by_pitch": 0,
        "strikeouts": 8,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.341,
        "obp": 0.453,
        "slg": 0.727,
        "ops": 1.18,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Colorado Rockies",
        "split_abbreviation": "vs. COL",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 11.25,
        "wins": 0,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 4,
        "hits_allowed": 9,
        "runs_allowed": 5,
        "earned_runs": 5,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 3,
        "opponent_avg": 0.474
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Detroit Tigers",
        "split_abbreviation": "vs. DET",
        "at_bats": 10,
        "runs": 5,
        "hits": 3,
        "doubles": 0,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 2,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.3,
        "obp": 0.462,
        "slg": 0.6,
        "ops": 1.062,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Houston Astros",
        "split_abbreviation": "vs. HOU",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 2,
        "hits_allowed": 1,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 3,
        "opponent_avg": 0.167
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Houston Astros",
        "split_abbreviation": "vs. HOU",
        "at_bats": 11,
        "runs": 0,
        "hits": 1,
        "doubles": 0,
        "triples": 0,
        "home_runs": 0,
        "rbis": 0,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 2,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.091,
        "obp": 0.231,
        "slg": 0.091,
        "ops": 0.322,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Kansas City Royals",
        "split_abbreviation": "vs. KC",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 2,
        "hits_allowed": 1,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 1,
        "opponent_avg": 0.167
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Kansas City Royals",
        "split_abbreviation": "vs. KC",
        "at_bats": 11,
        "runs": 2,
        "hits": 2,
        "doubles": 0,
        "triples": 1,
        "home_runs": 1,
        "rbis": 2,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 5,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.182,
        "obp": 0.25,
        "slg": 0.636,
        "ops": 0.886,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Los Angeles Angels",
        "split_abbreviation": "vs. LAA",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 8.31,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 4.1,
        "hits_allowed": 5,
        "runs_allowed": 4,
        "earned_runs": 4,
        "home_runs_allowed": 1,
        "walks_allowed": 0,
        "strikeouts_pitched": 7,
        "opponent_avg": 0.278
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Los Angeles Angels",
        "split_abbreviation": "vs. LAA",
        "at_bats": 24,
        "runs": 6,
        "hits": 8,
        "doubles": 0,
        "triples": 1,
        "home_runs": 3,
        "rbis": 4,
        "walks": 5,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.333,
        "obp": 0.448,
        "slg": 0.792,
        "ops": 1.24,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Miami Marlins",
        "split_abbreviation": "vs. MIA",
        "at_bats": 21,
        "runs": 11,
        "hits": 7,
        "doubles": 1,
        "triples": 2,
        "home_runs": 3,
        "rbis": 5,
        "walks": 9,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 4,
        "caught_stealing": 1,
        "avg": 0.333,
        "obp": 0.533,
        "slg": 1,
        "ops": 1.533,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Milwaukee Brewers",
        "split_abbreviation": "vs. MIL",
        "at_bats": 22,
        "runs": 4,
        "hits": 6,
        "doubles": 0,
        "triples": 0,
        "home_runs": 3,
        "rbis": 7,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.273,
        "obp": 0.385,
        "slg": 0.682,
        "ops": 1.066,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Minnesota Twins",
        "split_abbreviation": "vs. MIN",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 3,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 3,
        "hits_allowed": 4,
        "runs_allowed": 1,
        "earned_runs": 1,
        "home_runs_allowed": 1,
        "walks_allowed": 1,
        "strikeouts_pitched": 3,
        "opponent_avg": 0.308
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Minnesota Twins",
        "split_abbreviation": "vs. MIN",
        "at_bats": 13,
        "runs": 4,
        "hits": 3,
        "doubles": 0,
        "triples": 0,
        "home_runs": 3,
        "rbis": 5,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 7,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.231,
        "obp": 0.286,
        "slg": 0.923,
        "ops": 1.209,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "New York Mets",
        "split_abbreviation": "vs. NYM",
        "at_bats": 28,
        "runs": 4,
        "hits": 7,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 3,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 12,
        "stolen_bases": 0,
        "caught_stealing": 1,
        "avg": 0.25,
        "obp": 0.313,
        "slg": 0.464,
        "ops": 0.777,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "New York Yankees",
        "split_abbreviation": "vs. NYY",
        "at_bats": 13,
        "runs": 4,
        "hits": 4,
        "doubles": 0,
        "triples": 0,
        "home_runs": 2,
        "rbis": 2,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.308,
        "obp": 0.308,
        "slg": 0.769,
        "ops": 1.077,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Oakland Athletics",
        "split_abbreviation": "vs. OAK",
        "at_bats": 12,
        "runs": 4,
        "hits": 4,
        "doubles": 0,
        "triples": 0,
        "home_runs": 3,
        "rbis": 7,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 2,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.333,
        "obp": 0.4,
        "slg": 1.083,
        "ops": 1.483,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Philadelphia Phillies",
        "split_abbreviation": "vs. PHI",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 5,
        "hits_allowed": 0,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 5,
        "opponent_avg": 0
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Philadelphia Phillies",
        "split_abbreviation": "vs. PHI",
        "at_bats": 23,
        "runs": 3,
        "hits": 5,
        "doubles": 1,
        "triples": 0,
        "home_runs": 2,
        "rbis": 2,
        "walks": 4,
        "hit_by_pitch": 0,
        "strikeouts": 10,
        "stolen_bases": 1,
        "caught_stealing": 1,
        "avg": 0.217,
        "obp": 0.333,
        "slg": 0.522,
        "ops": 0.855,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Pittsburgh Pirates",
        "split_abbreviation": "vs. PIT",
        "at_bats": 26,
        "runs": 4,
        "hits": 10,
        "doubles": 6,
        "triples": 1,
        "home_runs": 1,
        "rbis": 3,
        "walks": 2,
        "hit_by_pitch": 0,
        "strikeouts": 8,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.385,
        "obp": 0.429,
        "slg": 0.808,
        "ops": 1.236,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "San Diego Padres",
        "split_abbreviation": "vs. SD",
        "at_bats": 49,
        "runs": 7,
        "hits": 9,
        "doubles": 2,
        "triples": 1,
        "home_runs": 1,
        "rbis": 4,
        "walks": 7,
        "hit_by_pitch": 2,
        "strikeouts": 17,
        "stolen_bases": 0,
        "caught_stealing": 1,
        "avg": 0.184,
        "obp": 0.31,
        "slg": 0.327,
        "ops": 0.637,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "San Diego Padres",
        "split_abbreviation": "vs. SD",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 9,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 1,
        "hits_allowed": 2,
        "runs_allowed": 1,
        "earned_runs": 1,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 0,
        "opponent_avg": 0.5
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "San Francisco Giants",
        "split_abbreviation": "vs. SF",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 3,
        "hits_allowed": 1,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 1,
        "strikeouts_pitched": 4,
        "opponent_avg": 0.1
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "San Francisco Giants",
        "split_abbreviation": "vs. SF",
        "at_bats": 49,
        "runs": 16,
        "hits": 16,
        "doubles": 2,
        "triples": 0,
        "home_runs": 6,
        "rbis": 9,
        "walks": 12,
        "hit_by_pitch": 0,
        "strikeouts": 13,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.327,
        "obp": 0.459,
        "slg": 0.735,
        "ops": 1.194,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Seattle Mariners",
        "split_abbreviation": "vs. SEA",
        "at_bats": 8,
        "runs": 2,
        "hits": 3,
        "doubles": 1,
        "triples": 0,
        "home_runs": 1,
        "rbis": 1,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 3,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.375,
        "obp": 0.444,
        "slg": 0.875,
        "ops": 1.319,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "St. Louis Cardinals",
        "split_abbreviation": "vs. STL",
        "at_bats": 23,
        "runs": 5,
        "hits": 7,
        "doubles": 2,
        "triples": 0,
        "home_runs": 1,
        "rbis": 2,
        "walks": 3,
        "hit_by_pitch": 1,
        "strikeouts": 4,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.304,
        "obp": 0.407,
        "slg": 0.522,
        "ops": 0.929,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "St. Louis Cardinals",
        "split_abbreviation": "vs. STL",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 2.25,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 4,
        "hits_allowed": 2,
        "runs_allowed": 1,
        "earned_runs": 1,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 8,
        "opponent_avg": 0.143
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Tampa Bay Rays",
        "split_abbreviation": "vs. TB",
        "at_bats": 11,
        "runs": 2,
        "hits": 5,
        "doubles": 1,
        "triples": 0,
        "home_runs": 0,
        "rbis": 0,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 6,
        "stolen_bases": 2,
        "caught_stealing": 0,
        "avg": 0.455,
        "obp": 0.571,
        "slg": 0.545,
        "ops": 1.117,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Texas Rangers",
        "split_abbreviation": "vs. TEX",
        "at_bats": 3,
        "runs": 0,
        "hits": 0,
        "doubles": 0,
        "triples": 0,
        "home_runs": 0,
        "rbis": 0,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 1,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0,
        "obp": 0.25,
        "slg": 0,
        "ops": 0.25,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Toronto Blue Jays",
        "split_abbreviation": "vs. TOR",
        "at_bats": 13,
        "runs": 5,
        "hits": 7,
        "doubles": 1,
        "triples": 0,
        "home_runs": 2,
        "rbis": 2,
        "walks": 3,
        "hit_by_pitch": 0,
        "strikeouts": 4,
        "stolen_bases": 1,
        "caught_stealing": 1,
        "avg": 0.538,
        "obp": 0.625,
        "slg": 1.077,
        "ops": 1.702,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byOpponent",
        "split_name": "Washington Nationals",
        "split_abbreviation": "vs. WSH",
        "at_bats": 24,
        "runs": 6,
        "hits": 9,
        "doubles": 0,
        "triples": 2,
        "home_runs": 2,
        "rbis": 8,
        "walks": 5,
        "hit_by_pitch": 0,
        "strikeouts": 9,
        "stolen_bases": 1,
        "caught_stealing": 0,
        "avg": 0.375,
        "obp": 0.483,
        "slg": 0.792,
        "ops": 1.274,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "byOpponent",
        "split_name": "Washington Nationals",
        "split_abbreviation": "vs. WSH",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 0,
        "wins": 0,
        "losses": 0,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 1,
        "games_started": 1,
        "complete_games": 0,
        "innings_pitched": 1,
        "hits_allowed": 0,
        "runs_allowed": 0,
        "earned_runs": 0,
        "home_runs_allowed": 0,
        "walks_allowed": 0,
        "strikeouts_pitched": 2,
        "opponent_avg": 0
      }
    ],
    "byPosition": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byPosition",
        "split_name": "As DH",
        "split_abbreviation": "As DH",
        "at_bats": 611,
        "runs": 55,
        "hits": 172,
        "doubles": 25,
        "triples": 9,
        "home_runs": 55,
        "rbis": 102,
        "walks": 109,
        "hit_by_pitch": 3,
        "strikeouts": 187,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.282,
        "obp": 0.392,
        "slg": 0.622,
        "ops": 1.014,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "byPosition",
        "split_name": "As P",
        "split_abbreviation": "As P",
        "at_bats": 4,
        "runs": 9,
        "hits": 4,
        "doubles": 0,
        "triples": 0,
        "home_runs": 4,
        "rbis": 7,
        "walks": 0,
        "hit_by_pitch": 0,
        "strikeouts": 0,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 1,
        "obp": 1,
        "slg": 4,
        "ops": 5,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ],
    "bySituation": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "bySituation",
        "split_name": "Bases Loaded",
        "split_abbreviation": "Bases Loaded",
        "at_bats": 10,
        "runs": 17,
        "hits": 1,
        "doubles": 0,
        "triples": 1,
        "home_runs": 0,
        "rbis": 6,
        "walks": 1,
        "hit_by_pitch": 0,
        "strikeouts": 6,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.1,
        "obp": 0.182,
        "slg": 0.3,
        "ops": 0.482,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "bySituation",
        "split_name": "Lead Off Inning",
        "split_abbreviation": "Leading Off Inning",
        "at_bats": 233,
        "runs": 23,
        "hits": 69,
        "doubles": 9,
        "triples": 3,
        "home_runs": 23,
        "rbis": 23,
        "walks": 33,
        "hit_by_pitch": 0,
        "strikeouts": 73,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.296,
        "obp": 0.383,
        "slg": 0.657,
        "ops": 1.04,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "bySituation",
        "split_name": "None On",
        "split_abbreviation": "None on",
        "at_bats": 410,
        "runs": 39,
        "hits": 114,
        "doubles": 13,
        "triples": 7,
        "home_runs": 39,
        "rbis": 39,
        "walks": 56,
        "hit_by_pitch": 1,
        "strikeouts": 130,
        "stolen_bases": 0,
        "caught_stealing": 0,
        "avg": 0.278,
        "obp": 0.366,
        "slg": 0.629,
        "ops": 0.995,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "bySituation",
        "split_name": "Runners On",
        "split_abbreviation": "Runners on",
        "at_bats": 201,
        "runs": 107,
        "hits": 58,
        "doubles": 12,
        "triples": 2,
        "home_runs": 16,
        "rbis": 63,
        "walks": 33,
        "hit_by_pitch": 2,
        "strikeouts": 57,
        "stolen_bases": 20,
        "caught_stealing": 5,
        "avg": 0.289,
        "obp": 0.391,
        "slg": 0.607,
        "ops": 0.998,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "bySituation",
        "split_name": "Scoring Position",
        "split_abbreviation": "Scoring Posn",
        "at_bats": 93,
        "runs": 91,
        "hits": 23,
        "doubles": 2,
        "triples": 1,
        "home_runs": 8,
        "rbis": 42,
        "walks": 18,
        "hit_by_pitch": 2,
        "strikeouts": 31,
        "stolen_bases": 4,
        "caught_stealing": 2,
        "avg": 0.247,
        "obp": 0.374,
        "slg": 0.548,
        "ops": 0.922,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "bySituation",
        "split_name": "Scoring Position, 2 out",
        "split_abbreviation": "ScPos/2 Out",
        "at_bats": 42,
        "runs": 36,
        "hits": 13,
        "doubles": 1,
        "triples": 0,
        "home_runs": 2,
        "rbis": 16,
        "walks": 17,
        "hit_by_pitch": 2,
        "strikeouts": 12,
        "stolen_bases": 0,
        "caught_stealing": 2,
        "avg": 0.31,
        "obp": 0.525,
        "slg": 0.476,
        "ops": 1.001,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ],
    "split": [
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "pitching",
        "split_category": "split",
        "split_name": "All Splits",
        "split_abbreviation": "Total",
        "at_bats": null,
        "runs": null,
        "hits": null,
        "doubles": null,
        "triples": null,
        "home_runs": null,
        "rbis": null,
        "walks": null,
        "hit_by_pitch": null,
        "strikeouts": null,
        "stolen_bases": null,
        "caught_stealing": null,
        "avg": null,
        "obp": null,
        "slg": null,
        "ops": null,
        "era": 2.87,
        "wins": 1,
        "losses": 1,
        "saves": 0,
        "save_opportunities": 0,
        "games_played": 14,
        "games_started": 14,
        "complete_games": 0,
        "innings_pitched": 47,
        "hits_allowed": 40,
        "runs_allowed": 15,
        "earned_runs": 15,
        "home_runs_allowed": 3,
        "walks_allowed": 9,
        "strikeouts_pitched": 62,
        "opponent_avg": 0.227
      },
      {
        "player": {
          "id": 208,
          "first_name": "Shohei",
          "last_name": "Ohtani",
          "full_name": "Shohei Ohtani",
          "debut_year": 2018,
          "jersey": "17",
          "college": null,
          "position": "Designated Hitter",
          "active": true,
          "birth_place": "Oshu, Japan",
          "dob": "5/7/1994",
          "age": 30,
          "height": "6' 4\"",
          "weight": "210 lbs",
          "draft": null,
          "bats_throws": "Left/Right",
          "team": {
            "id": 14,
            "slug": "los-angeles-dodgers",
            "abbreviation": "LAD",
            "display_name": "Los Angeles Dodgers",
            "short_display_name": "Dodgers",
            "name": "Dodgers",
            "location": "Los Angeles",
            "league": "National",
            "division": "West"
          }
        },
        "season": 2025,
        "category": "batting",
        "split_category": "split",
        "split_name": "All Splits",
        "split_abbreviation": "Total",
        "at_bats": 611,
        "runs": 146,
        "hits": 172,
        "doubles": 25,
        "triples": 9,
        "home_runs": 55,
        "rbis": 102,
        "walks": 109,
        "hit_by_pitch": 3,
        "strikeouts": 187,
        "stolen_bases": 20,
        "caught_stealing": 6,
        "avg": 0.282,
        "obp": 0.392,
        "slg": 0.622,
        "ops": 1.014,
        "era": null,
        "wins": null,
        "losses": null,
        "saves": null,
        "save_opportunities": null,
        "games_played": null,
        "games_started": null,
        "complete_games": null,
        "innings_pitched": null,
        "hits_allowed": null,
        "runs_allowed": null,
        "earned_runs": null,
        "home_runs_allowed": null,
        "walks_allowed": null,
        "strikeouts_pitched": null,
        "opponent_avg": null
      }
    ]
  }
}

This endpoint retrieves player splits for a specific player and season. The splits are grouped by split_category (e.g., "split", "byDayMonth", "byBreakdown", etc.).

HTTP Request

GET https://api.balldontlie.io/mlb/v1/players/splits

Query Parameters

Parameter Required Description
player_id true Returns splits for this player
season true Returns splits for this season

Player vs Player

Get Player vs Player Matchups

curl "https://api.balldontlie.io/mlb/v1/players/versus?player_id=208&opponent_team_id=29" \
  -H "Authorization: YOUR_API_KEY"
const response = await fetch(
  "https://api.balldontlie.io/mlb/v1/players/versus?player_id=1106&opponent_team_id=19",
  {
    headers: {
      Authorization: "YOUR_API_KEY",
    },
  }
);
const matchups = await response.json();
import requests

response = requests.get(
    "https://api.balldontlie.io/mlb/v1/players/versus",
    params={"player_id": 1106, "opponent_team_id": 19},
    headers={"Authorization": "YOUR_API_KEY"}
)
matchups = response.json()

The above command returns JSON structured like this:

{
  "data": [
    {
      "player": {
        "id": 208,
        "first_name": "Shohei",
        "last_name": "Ohtani",
        "full_name": "Shohei Ohtani",
        "debut_year": 2018,
        "jersey": "17",
        "college": null,
        "position": "Designated Hitter",
        "active": true,
        "birth_place": "Oshu, Japan",
        "dob": "5/7/1994",
        "age": 30,
        "height": "6' 4\"",
        "weight": "210 lbs",
        "draft": null,
        "bats_throws": "Left/Right",
        "team": {
          "id": 14,
          "slug": "los-angeles-dodgers",
          "abbreviation": "LAD",
          "display_name": "Los Angeles Dodgers",
          "short_display_name": "Dodgers",
          "name": "Dodgers",
          "location": "Los Angeles",
          "league": "National",
          "division": "West"
        }
      },
      "opponent_player": {
        "id": 741,
        "first_name": "Kevin",
        "last_name": "Gausman",
        "full_name": "Kevin Gausman",
        "debut_year": 2013,
        "jersey": "34",
        "college": "LSU",
        "position": "Starting Pitcher",
        "active": true,
        "birth_place": "Centennial, CO",
        "dob": "6/1/1991",
        "age": 33,
        "height": "6' 2\"",
        "weight": "205 lbs",
        "draft": "2012: Rd 1, Pk 4 (BAL)",
        "bats_throws": "Left/Right",
        "team": {
          "id": 29,
          "slug": "toronto-blue-jays",
          "abbreviation": "TOR",
          "display_name": "Toronto Blue Jays",
          "short_display_name": "Blue Jays",
          "name": "Blue Jays",
          "location": "Toronto",
          "league": "American",
          "division": "East"
        }
      },
      "opponent_team": {
        "id": 29,
        "slug": "toronto-blue-jays",
        "abbreviation": "TOR",
        "display_name": "Toronto Blue Jays",
        "short_display_name": "Blue Jays",
        "name": "Blue Jays",
        "location": "Toronto",
        "league": "American",
        "division": "East"
      },
      "at_bats": 17,
      "hits": 2,
      "doubles": 0,
      "triples": 0,
      "home_runs": 1,
      "rbi": 1,
      "walks": 1,
      "strikeouts": 7,
      "avg": 0.118,
      "obp": 0.167,
      "slg": 0.294,
      "ops": 0.461
    },
    {
      "player": {
        "id": 208,
        "first_name": "Shohei",
        "last_name": "Ohtani",
        "full_name": "Shohei Ohtani",
        "debut_year": 2018,
        "jersey": "17",
        "college": null,
        "position": "Designated Hitter",
        "active": true,
        "birth_place": "Oshu, Japan",
        "dob": "5/7/1994",
        "age": 30,
        "height": "6' 4\"",
        "weight": "210 lbs",
        "draft": null,
        "bats_throws": "Left/Right",
        "team": {
          "id": 14,
          "slug": "los-angeles-dodgers",
          "abbreviation": "LAD",
          "display_name": "Los Angeles Dodgers",
          "short_display_name": "Dodgers",
          "name": "Dodgers",
          "location": "Los Angeles",
          "league": "National",
          "division": "West"
        }
      },
      "opponent_player": {
        "id": 679,
        "first_name": "Jose",
        "last_name": "Berrios",
        "full_name": "Jose Berrios",
        "debut_year": 2016,
        "jersey": "17",
        "college": null,
        "position": "Starting Pitcher",
        "active": true,
        "birth_place": "Bayamon, Puerto Rico",
        "dob": "27/5/1994",
        "age": 30,
        "height": "6' 0\"",
        "weight": "205 lbs",
        "draft": "2012: Rd 1, Pk 32 (MIN)",
        "bats_throws": "Right/Right",
        "team": {
          "id": 29,
          "slug": "toronto-blue-jays",
          "abbreviation": "TOR",
          "display_name": "Toronto Blue Jays",
          "short_display_name": "Blue Jays",
          "name": "Blue Jays",
          "location": "Toronto",
          "league": "American",
          "division": "East"
        }
      },
      "opponent_team": {
        "id": 29,
        "slug": "toronto-blue-jays",
        "abbreviation": "TOR",
        "display_name": "Toronto Blue Jays",
        "short_display_name": "Blue Jays",
        "name": "Blue Jays",
        "location": "Toronto",
        "league": "American",
        "division": "East"
      },
      "at_bats": 18,
      "hits": 8,
      "doubles": 4,
      "triples": 0,
      "home_runs": 3,
      "rbi": 6,
      "walks": 4,
      "strikeouts": 5,
      "avg": 0.444,
      "obp": 0.545,
      "slg": 1.167,
      "ops": 1.712
    },
    ...
  ]
}

This endpoint retrieves player vs player matchup data for a specific batter against pitchers, or pitcher against batter from an opponent team

HTTP Request

GET https://api.balldontlie.io/mlb/v1/players/versus

Query Parameters

Parameter Required Description
player_id true Returns matchups for this player
opponent_team_id true Returns matchups against this opponent team