laliganacional.com.ar APIlaliganacional.com.ar ↗
Access Argentine Liga Nacional basketball data: team rosters, standings, box scores, play-by-play, and player stats via 15 structured endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/06432248-9f4b-4a2e-bbb9-744ac4dcf4fb/get_liga_argentina_teams' \ -H 'X-API-Key: $PARSE_API_KEY'
Get list of all teams in Liga Argentina with their IDs, slugs, and URLs. Returns all teams participating in the current season.
No input parameters required.
{
"type": "object",
"fields": {
"teams": "array of team objects with name, url, club_id, team_id, and slug"
},
"sample": {
"data": {
"teams": [
{
"url": "https://www.laliganacional.com.ar/laligaargentina/equipo/2168/88795/amancay-lr/inicio",
"name": "AMANCAY (LR)LA RIOJA",
"slug": "amancay-lr",
"club_id": "2168",
"team_id": "88795"
}
]
},
"status": "success"
}
}About the laliganacional.com.ar API
This API covers the Argentine Liga Nacional basketball league across 15 endpoints, returning team profiles, season fixtures, standings, player statistics, and match-level data. The get_match_play_by_play endpoint delivers chronological game events with action type, player name, side, and running score. Standings, league-wide stat leaders, and per-game team breakdowns are all accessible without authentication.
Team and Roster Data
Start with get_liga_argentina_teams to retrieve every participating club with its club_id, team_id, slug, and URL — these three identifiers are required inputs for most other team-scoped endpoints. get_team_profile returns the team's full_name and logo. get_team_fixture lists all season matches for a club, each with a match_id (Base64-encoded) and summary text needed to drill into individual games.
Match-Level Endpoints
get_match_box_score accepts a match_id and returns two arrays — one per team — of player stat rows. get_match_top_performers keys the response by category (valoracion, puntos, rebotes, asistencias, tapones-cometidos, recuperaciones) with player arrays for each. get_match_play_by_play provides a full event log per game: each object includes action, side, player, detail, and the live score at that moment.
League-Wide Data
get_league_standings takes an optional fase_id parameter — for example '16077' for the current regular season — and returns standings grouped by conference, with columns for Posicion, PJ, PG, PP, PF, PC, PTOS, and %VICT. get_league_fixture accepts a start_date and end_date (YYYY-MM-DD) and returns all scheduled matches in that window, including local/visitor names, scores, venue, and match IDs. get_league_player_stats_leaders returns league-wide leaders keyed by handler names like LiderPuntosPorPartido, each entry containing rank, player, team, and value.
Team Statistics
get_team_stats_aggregate returns season totals and per-game averages across shooting, rebounds, blocks, fouls, and team play metrics. get_team_stats_per_game breaks those numbers down match by match, with Rival, Resultado, and Fecha fields per row. get_team_leaders organizes top performers within a squad by categories like puntos_media and rebotesTotales_media. get_team_news fetches club news articles with titular, fecha, entradilla, and detalle, supporting pagination via last_id and a hayMasNoticias boolean.
- Build a season standings tracker displaying conference tables updated with
get_league_standingsdata. - Populate a match dashboard with live play-by-play events using
get_match_play_by_playaction and score fields. - Compare team shooting and rebounding averages across the season with
get_team_stats_aggregatetotals and per-game splits. - Create a league-wide leaderboard by parsing
get_league_player_stats_leadersacross points, assists, and blocks categories. - Display club news feeds with pagination using
get_team_newswithclub_idandlast_idfor continuous loading. - Generate individual game summaries by combining
get_match_box_scoreplayer rows withget_match_top_performerscategory leaders. - Schedule and fixture aggregators can query
get_league_fixtureover a date range to list upcoming matches with venues and team names.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does laliganacional.com.ar have an official developer API?+
What does `get_team_player_stats` return, and how are the values structured?+
get_team_player_stats returns a player_stats field containing one outer array, inside which each player is represented as an array of stat values covering games played, minutes, scoring, rebounds, assists, and efficiency for the full season. There are no named keys per value — ordering matches the source table columns.Does the API cover historical seasons, or only the current season?+
get_liga_argentina_teams returns teams participating in the active season, and endpoints like get_team_fixture and get_team_stats_aggregate reflect current-season data. Historical seasons from prior years are not currently exposed. You can fork the API on Parse and revise it to add endpoints targeting historical season identifiers if that data is available on the source.How does `get_league_fixture` handle matches with no result yet?+
get_league_fixture returns match objects with local, visitor, date, venue, and match_id for all matches in the queried window. Scores are included in the response structure, but for future matches the score fields will reflect no result. You can use start_date and end_date to isolate upcoming versus completed matches.Are individual player profiles or career statistics available?+
get_team_player_stats and get_team_leaders, and match-level performance via get_match_box_score and get_match_top_performers, but there is no dedicated player profile endpoint with career or cross-season data. You can fork the API on Parse and revise it to add a player-profile endpoint if the source exposes individual player pages.