Programmatically interact with the American Soccer Analysis API
Project description
itscalledsoccer
Table of Contents
- Background
- Features
- Installation
- Quick Start
- Usage Examples
- Advanced Usage
- API Reference
- Other Versions
- Contributing
- License
Background
itscalledsoccer is a Python wrapper around the American Soccer Analysis API, providing programmatic access to advanced soccer analytics across North American leagues.
What you can measure:
- Expected Goals (xG) — Shot quality and finishing efficiency
- Expected Passes (xPass) — Pass difficulty and creative play
- Goals Added (g+) — Total value contribution of players
- Salaries — MLS salary and spend data
The API is free and public — no authentication required.
Supported leagues:
| Code | League |
|---|---|
mls |
Major League Soccer |
nwsl |
National Women's Soccer League |
uslc |
USL Championship |
usl1 |
USL League One |
usls |
USL Super League |
nasl |
North American Soccer League (historical) |
mlsnp |
MLS Next Pro |
Useful links:
- Full API documentation: american-soccer-analysis.github.io/itscalledsoccer/reference
- Web app: app.americansocceranalysis.com
Features
- 15 API methods covering players, teams, games, and advanced statistics
- Fuzzy name matching — search by partial names or abbreviations ("LA", "Vela")
- Type hints — full type annotations on all public methods
- Consistent interface — same patterns across all 7 leagues
Installation
Stable Release
pip install itscalledsoccer
Development Version
git clone https://github.com/American-Soccer-Analysis/itscalledsoccer.git
cd itscalledsoccer
pip install -e ".[dev]"
Requirements: Python 3.10+, requests, pandas, cachecontrol, rapidfuzz
Quick Start
from itscalledsoccer import AmericanSoccerAnalysis
# Initialize client (no authentication required)
asa = AmericanSoccerAnalysis()
# Get all USLC players
uslc_players = asa.get_players(leagues="uslc")
# Get Expected Goals (xG) data for 2023
xg_data = asa.get_player_xgoals(
leagues="uslc",
season_name="2023"
)
For the complete method reference, see Usage Examples below.
Usage Examples
Entities
Retrieve core soccer entities with optional filtering:
# Same interface for all entity types
uslc_players = asa.get_players(leagues="uslc")
teams = asa.get_teams(leagues=["uslc", "nwsl"])
stadia = asa.get_stadia()
managers = asa.get_managers(leagues="uslc")
referees = asa.get_referees(leagues=["uslc", "mls"])
Available entities: players, teams, stadia, managers, referees
Games
# Get games for a specific league and season
uslc_2024_games = asa.get_games(leagues="uslc", seasons="2024")
# Filter by team
lou_games = asa.get_games(leagues="uslc", team_names="Louisville City")
Player Statistics
Expected Goals (xG)
Expected Goals measures the quality of shot chances a player creates or faces.
xg = asa.get_player_xgoals(
leagues="uslc",
season_name="2025",
minimum_minutes=900
)
Available filters: minimum_minutes, minimum_shots, minimum_key_passes, shot_pattern, split_by_teams, split_by_seasons, split_by_games, general_position
Expected Pass (xPass)
Expected Pass measures pass difficulty and creative play value.
xpass = asa.get_player_xpass(
leagues="uslc",
minimum_minutes=900
)
Goals Added (g+)
Goals Added measures total value contribution across all actions.
gplus = asa.get_player_goals_added(
leagues="uslc",
above_replacement=True
)
Note: Goalkeeper statistics use the same interface — get_goalkeeper_xgoals() and get_goalkeeper_goals_added().
Team Statistics
# Team Expected Goals
team_xg = asa.get_team_xgoals(
leagues="uslc",
split_by_seasons=True
)
# Team Expected Pass
team_xpass = asa.get_team_xpass(
leagues=["uslc", "nwsl"],
split_by_seasons=True
)
# Team Salaries (MLS only)
team_salaries = asa.get_team_salaries(
leagues="mls",
split_by_teams=True
)
Team-specific filters: home_only, away_only, home_adjusted, even_game_state, zone (1-30), gamestate_trunc (-2 to 2)
Advanced Usage
Fuzzy Name Matching
Search by partial names, initials, or abbreviations. Returns only the best match:
# Player names
asa.get_players(names="Carlos Vela")
# Team names
asa.get_teams(names="LA")
API Reference
Complete documentation: american-soccer-analysis.github.io/itscalledsoccer/reference
The reference includes:
- All 15 methods and their parameters
- Complete field descriptions for each endpoint
- Type signatures and defaults
Common questions:
- No API key needed? Correct — the API is public and free.
- Why is my query slow? Large queries may take a moment. Subsequent identical queries are cached.
- What do the metrics mean?
- xG: Shot quality (0-1 per shot)
- xPass: Pass completion probability (0-1)
- g+: Measures a player's total on-ball contribution in attack and defense
For detailed methodology, see American Soccer Analysis.
Other Versions
- R: itscalledsoccer-r
- JavaScript: itscalledsoccer-js
Contributing
See CONTRIBUTING.md for code of conduct, development setup, pull request process, and issue reporting.
License
MIT © itscalledsoccer authors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file itscalledsoccer-2.0.0.tar.gz.
File metadata
- Download URL: itscalledsoccer-2.0.0.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f11d7baac27772cc1d70090770d2f04e874acf6d498507f6de8023ff7e11974a
|
|
| MD5 |
91a609b539beff74b20570eda2b926c8
|
|
| BLAKE2b-256 |
629c4fec75453c1078ff05392e213d06e60e6ab70841f65baf430f4eba0c5f0e
|
Provenance
The following attestation bundles were made for itscalledsoccer-2.0.0.tar.gz:
Publisher:
pypi-publish.yml on American-Soccer-Analysis/itscalledsoccer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
itscalledsoccer-2.0.0.tar.gz -
Subject digest:
f11d7baac27772cc1d70090770d2f04e874acf6d498507f6de8023ff7e11974a - Sigstore transparency entry: 1521660722
- Sigstore integration time:
-
Permalink:
American-Soccer-Analysis/itscalledsoccer@ece177bba0872f8a1a6331c004e1704e842ff01f -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/American-Soccer-Analysis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@ece177bba0872f8a1a6331c004e1704e842ff01f -
Trigger Event:
release
-
Statement type:
File details
Details for the file itscalledsoccer-2.0.0-py3-none-any.whl.
File metadata
- Download URL: itscalledsoccer-2.0.0-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cf638f57b448fc6b380314e8729f955da920696f3e203bfdd394d529f945b76
|
|
| MD5 |
40c9a16cb2bede0b293799140084c011
|
|
| BLAKE2b-256 |
5ad94b5d23deaf3661d4de8fdea471bc3d0a8ae8fef83168b8b80e2a99ce95d8
|
Provenance
The following attestation bundles were made for itscalledsoccer-2.0.0-py3-none-any.whl:
Publisher:
pypi-publish.yml on American-Soccer-Analysis/itscalledsoccer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
itscalledsoccer-2.0.0-py3-none-any.whl -
Subject digest:
9cf638f57b448fc6b380314e8729f955da920696f3e203bfdd394d529f945b76 - Sigstore transparency entry: 1521660736
- Sigstore integration time:
-
Permalink:
American-Soccer-Analysis/itscalledsoccer@ece177bba0872f8a1a6331c004e1704e842ff01f -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/American-Soccer-Analysis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@ece177bba0872f8a1a6331c004e1704e842ff01f -
Trigger Event:
release
-
Statement type: