The Unofficial Python Wrapper for the MLB Stats API
Wiki | Methods | Examples | Stats | Async | Public API | MLB Stats API
python-mlb-statsapi is a Python client for MLB's Stats API.
- Broad API coverage: Query teams, players, schedules, games, statistics, and more.
- Pythonic models: Work with Pydantic objects whose fields use
snake_casenames. - Sync and async: Choose the synchronous
Mlbclient or the asynchronousAsyncMlbclient. The async API is additive, so existing sync users can upgrade without changing their code.
Unofficial project. This package and its authors are not affiliated with or endorsed by Major League Baseball or any MLB team. Use of MLB data is subject to MLB's copyright notice. This is an educational project—not for commercial use.
python3 -m pip install python-mlb-statsapiInstall the optional async extra to use AsyncMlb and AsyncMlbDataAdapter:
python3 -m pip install "python-mlb-statsapi[async]"The async extra installs HTTPX. Python 3.10 or newer is required.
| Claim | Value |
|---|---|
| Minimum Python version | >=3.10 |
| CI-validated versions | Python 3.10 through 3.14 (3.10, 3.11, 3.12, 3.13, 3.14) |
See Python support for the complete policy.
from mlbstatsapi import Mlb
with Mlb() as mlb:
player = mlb.get_person(664034)
team = mlb.get_team(136)
print(player.full_name)
print(team.name)import asyncio
from mlbstatsapi import AsyncMlb
async def main():
async with AsyncMlb() as mlb:
player = await mlb.get_person(664034)
team = await mlb.get_team(136)
print(player.full_name)
print(team.name)
asyncio.run(main())Context managers are recommended, but both clients can also be created directly. When doing that, close library-owned HTTP resources explicitly.
from mlbstatsapi import Mlb
mlb = Mlb()
try:
player = mlb.get_person(664034)
team = mlb.get_team(136)
print(player.full_name)
print(team.name)
finally:
mlb.close()import asyncio
from mlbstatsapi import AsyncMlb
async def main():
mlb = AsyncMlb()
try:
player = await mlb.get_person(664034)
team = await mlb.get_team(136)
print(player.full_name)
print(team.name)
finally:
await mlb.aclose()
asyncio.run(main())See Async usage for lifecycle, concurrency, custom HTTPX clients, and the current async endpoint list.
Mlb |
AsyncMlb |
|
|---|---|---|
| HTTP library | Requests | HTTPX |
| Context manager | with Mlb() |
async with AsyncMlb() |
| Request | mlb.get_team(...) |
await mlb.get_team(...) |
| Explicit cleanup | mlb.close() |
await mlb.aclose() |
AsyncMlb mirrors the full endpoint surface of Mlb. Both clients return the same Pydantic models and follow the same public HTTP/error behavior.
See the public API contract for the authoritative method list and signatures.
AsyncMlb supports concurrent requests on the same event loop. Concurrency is controlled by the caller.
import asyncio
from mlbstatsapi import AsyncMlb
async def main():
async with AsyncMlb() as mlb:
player, team = await asyncio.gather(
mlb.get_person(664034),
mlb.get_team(136),
)
return player, team
player, team = asyncio.run(main())AsyncMlb does not create hidden background tasks or automatic request fanout.
The examples below assume an initialized Mlb client named mlb, as shown in Quick Start.
player = mlb.get_person(664034)
players = mlb.get_people()
player_ids = mlb.get_people_id("Ty France")team = mlb.get_team(136)
teams = mlb.get_teams()
team_ids = mlb.get_team_id("Seattle Mariners")The stats API has several entry points and returns a nested stats[group][type] structure. See the dedicated Stats Guide for get_player_stats(), get_team_stats(), get_stats(), and get_players_stats_for_game() examples using both Mlb and AsyncMlb.
schedule = mlb.get_schedule(date="2022-10-13")See the method reference for the full method documentation that previously lived in the README. Longer runnable examples live in docs/examples.md.
Both clients use explicit timeouts, structured exceptions, and pooled HTTP connections. strict_http=True is the default. Final non-404 4xx responses raise MlbHttpError, while existing endpoint-specific 404 behavior is preserved.
Library-created clients send a versioned User-Agent. The current package version sends python-mlb-statsapi/1.1.0. See the HTTP transport documentation for the full transport contract.
The main transport exceptions are:
MlbHttpErrorMlbTimeoutErrorMlbTransportErrorMlbDecodeError
from mlbstatsapi import Mlb, MlbHttpError, MlbTimeoutError
try:
with Mlb() as mlb:
player = mlb.get_person(664034)
except MlbTimeoutError:
print("The MLB API timed out")
except MlbHttpError as exc:
print(exc.status_code, exc.reason)For timeouts, retries, compatibility mode, ownership rules, and transport details, see docs/http-transport.md.
Every returned model object uses Pydantic and Python-style snake_case fields:
from mlbstatsapi import Mlb
with Mlb() as mlb:
player = mlb.get_person(664034)
print(player.full_name) # not fullName
print(player.model_dump(exclude_none=True))
print(player.model_dump_json(indent=2))| Document | Contents |
|---|---|
| Wiki | Endpoint reference, return objects, and model documentation |
| Method reference | Method signatures and short descriptions from the original README reference |
| Usage examples | Extended synchronous examples |
| Stats guide | Player, team, general, and per-game stat queries with sync and async examples |
| Async usage | Async installation, lifecycle, concurrency, and examples |
| HTTP transport | Timeouts, retries, strict HTTP, exceptions, and ownership |
| Public API contract | Supported symbols, signatures, endpoint methods, and stability policy |
| Release notes | Release-specific changes and migration notes |
Contributions, bug fixes, tests, and documentation improvements are welcome.
git clone https://github.com/YOUR_USERNAME/python-mlb-statsapi.git
cd python-mlb-statsapi
poetry install -E asyncRun the deterministic offline suite before a pull request:
poetry run pytest tests/ --ignore=tests/external_testsExternal tests contact the live MLB API and are separate from normal offline CI:
poetry run pytest tests/external_tests/See CONTRIBUTING.md for the full development and pull request workflow.
Released under the MIT License.
