corinthians.com.br APIcorinthians.com.br ↗
Access official Corinthians squad rosters, player profiles, staff listings, news articles, and upcoming match data via a structured REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/06ce581e-a6ce-4578-af17-dba5e11eafc3/get_futebol_masculino_elenco' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the professional men's football squad. Returns all players with their names, photos, and profile links.
No input parameters required.
{
"type": "object",
"fields": {
"players": "array of player objects with name, photo, and profile_link"
},
"sample": {
"data": {
"players": [
{
"name": "Memphis",
"photo": "https://static.corinthians.com.br/uploads/1778264177b97ff938e29d450c38bfaf66f2a57ff0.png",
"profile_link": "https://www.corinthians.com.br/futebol/profissional/elenco/Memphis"
}
]
},
"status": "success"
}
}About the corinthians.com.br API
The Corinthians API exposes 7 endpoints covering the official Sport Club Corinthians Paulista website, including player rosters for the men's, women's, and Sub-20 squads, detailed player profiles, professional football department staff, paginated news articles, and upcoming fixture data. The get_player_detail endpoint, for example, returns position, age, height in meters, and birthplace for any named player in the men's professional squad.
Squad and Player Data
Three squad endpoints cover the club's full football program. get_futebol_masculino_elenco returns every player in the professional men's squad with name, photo URL, and a profile link. get_futebol_feminino_elenco returns the women's squad pre-grouped by position categories — Goleiras, Zagueiras, Laterais, Meias, and Atacantes — along with the same name, photo, and profile fields. get_formacao_sub20 covers the under-20 roster with names, positions, and profile links.
Player Profiles and Staff
get_player_detail accepts a player_name string (matching the exact name as listed on the squad page, e.g. 'Yuri Alberto' or 'Rodrigo Garro') and returns the player's display name, position in Portuguese, age, height formatted with a comma decimal ('1,78'), and birthplace as city and country. get_depto_futebol_profissional returns the full professional football department staff list — name and role for every member from coaching staff through support personnel.
News and Fixtures
get_noticias supports two optional query parameters: page for pagination and category for filtering by content type (e.g. 'futebol' or 'futebol+feminino'). Each article object in the response includes a title, link, date, and thumbnail. get_proxima_partida returns the next scheduled match from the homepage with home team, away team, competition name, venue (state, city, and stadium), and date/time in Brazilian format.
Coverage Notes
All data reflects the official corinthians.com.br website. Player profile fields are limited to what the site's profile pages expose — detailed season statistics (goals, appearances, cards) are not part of the current response shape. Staff roles are returned as strings in Portuguese, matching the site's own labels.
- Display the current Corinthians men's or women's starting squad on a fan application using
get_futebol_masculino_elencoorget_futebol_feminino_elenco - Build a player lookup tool that shows height, position, age, and birthplace via
get_player_detail - Populate a match countdown widget with opponent, stadium, and kick-off time from
get_proxima_partida - Aggregate Corinthians news by category (e.g. women's football) using the
categoryandpageparameters onget_noticias - List the full coaching and support staff for a club directory or media guide using
get_depto_futebol_profissional - Track the Sub-20 squad roster and player positions for youth football coverage via
get_formacao_sub20 - Cross-reference player birthplaces from
get_player_detailfor geographic scouting or fan demographic analysis
| 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 Sport Club Corinthians Paulista provide an official public developer API?+
What exactly does `get_proxima_partida` return, and does it include past results?+
get_proxima_partida returns the single next upcoming match as shown on the homepage: home team, away team, competition name, venue (state, city, and stadium name), and date/time in Brazilian format. Past match results are not currently covered. The API covers squad data, staff, news, and one upcoming fixture. You can fork it on Parse and revise to add a historical results endpoint.Does `get_player_detail` return statistics like goals scored or appearances?+
How does pagination work for `get_noticias`?+
page string parameter to retrieve subsequent pages of results. The category parameter accepts slugs such as 'futebol' or 'futebol+feminino' to filter articles. Both parameters are optional; omitting them returns the default latest news. Each article in the response includes a title, link, date, and thumbnail.