Discover/Corinthians API
live

Corinthians APIcorinthians.com.br

Access official Corinthians squad rosters, player profiles, staff listings, news articles, and upcoming match data via a structured REST API.

Endpoint health
verified 3d ago
get_proxima_partida
get_player_detail
get_futebol_feminino_elenco
get_futebol_masculino_elenco
get_noticias
6/6 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Corinthians 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.

Try it

No input parameters required.

api.parse.bot/scraper/06ce581e-a6ce-4578-af17-dba5e11eafc3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/06ce581e-a6ce-4578-af17-dba5e11eafc3/get_futebol_masculino_elenco' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace corinthians-com-br-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Corinthians SDK — squad data, player profiles, news, and schedules."""
from parse_apis.corinthians_official_website_api import Corinthians, Category, NotFoundError

corinthians = Corinthians()

# List the men's professional squad — limit caps total items fetched.
for player in corinthians.squads.men(limit=5):
    print(player.name, player.photo)

# Drill into a specific player's detailed profile via constructible Player.
detail = corinthians.player(name="Yuri Alberto").details()
print(detail.name, detail.position, detail.height, detail.age, detail.birthplace)

# Get upcoming matches from the event calendar.
for match in corinthians.schedules.upcoming(limit=3):
    print(match.title, match.date, match.time)

# Browse news by category using the Category enum.
for article in corinthians.newses.list(category=Category.FUTEBOL, limit=5):
    print(article.title, article.link)

# Get professional football department staff.
for member in corinthians.staffs.list(limit=5):
    print(member.name, member.role)

# Typed error handling: catch NotFoundError on a bad player lookup.
try:
    bad_detail = corinthians.player(name="Nonexistent Player").details()
    print(bad_detail.name)
except NotFoundError as exc:
    print(f"Player not found: {exc}")

print("exercised: squads.men / player.details / schedules.upcoming / newses.list / staffs.list")
All endpoints · 7 totalmissing one? ·

Get the professional men's football squad roster. Returns all players with their names, photos, and profile links. Players are listed without position grouping.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "players": "array of player objects with name, photo URL, and profile_link URL"
  },
  "sample": {
    "data": {
      "players": [
        {
          "name": "John Doe",
          "photo": "https://static.corinthians.com.br/uploads/177826429334d8bbe82e79d45f13cf5e7acd7ac21c.png",
          "profile_link": "https://www.corinthians.com.br/futebol/profissional/elenco/John+Doe"
        },
        {
          "name": "Jane Doe",
          "photo": "https://static.corinthians.com.br/uploads/1778265070e92c33518f5a71ec431f7e6d6b3e4fb4.png",
          "profile_link": "https://www.corinthians.com.br/futebol/profissional/elenco/Jane+Doe"
        }
      ]
    },
    "status": "success"
  }
}

About the Corinthians API

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.

Reliability & maintenanceVerified

The Corinthians API is a managed, monitored endpoint for corinthians.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when corinthians.com.br changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official corinthians.com.br API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display the current Corinthians men's or women's starting squad on a fan application using get_futebol_masculino_elenco or get_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 category and page parameters on get_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_detail for geographic scouting or fan demographic analysis
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Sport Club Corinthians Paulista provide an official public developer API?+
No. corinthians.com.br does not offer a documented public API for developers. This Parse API provides structured access to the data available on the official site.
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?+
Not currently. The endpoint returns biographical and physical profile fields — name, position, age, height, and birthplace. Per-season statistics are not part of the response. You can fork this API on Parse and revise it to add a stats endpoint if that data is accessible on the player's profile page.
How does pagination work for `get_noticias`?+
Pass a 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.
Does the API cover Corinthians basketball, futsal, or other club departments besides football?+
Not currently. The API covers the men's and women's professional football squads, the Sub-20 squad, the professional football department staff, football news, and the next football fixture. You can fork this API on Parse and revise it to add endpoints for other Corinthians departments or sports if the relevant pages are on the same domain.
Page content last updated . Spec covers 7 endpoints from corinthians.com.br.
Related APIs in SportsSee all →
fcbarcelona.com API
Access the latest FC Barcelona news, browse player profiles and squad rosters for both the first team and women's team, and check match schedules, results, and competition standings. Search across all available content to stay updated on team information, upcoming fixtures, and performance data.
kooora.com API
Get live football scores, match details, team standings, and player statistics in real-time. Stay updated with the latest football news and competition rankings all in one place.
fifa.com API
Track FIFA world rankings for men's and women's teams, browse tournament schedules and standings, access detailed match information with live timelines, and explore comprehensive player statistics and profiles. Stay updated with the latest football news and easily search across teams, players, and matches all in one place.
flashscore.de API
Get match listings, match details and statistics, team rosters, and a German-language sports news feed from Flashscore.de, plus lineup data with player rating fields when available.
football-data.org API
Get live match scores, team standings, and player statistics across football competitions worldwide. Search for teams, view head-to-head matchups, track top scorers, and explore detailed information about competitions and geographical areas.
fussballdaten.de API
Find live soccer match schedules, scores, and team information across German leagues and Europe's top competitions, with the ability to filter by date, team, or league. Quickly look up upcoming fixtures, past results, and complete team schedules for Bundesliga, Premier League, La Liga, Serie A, Ligue 1, Champions League, and more.
footystats.org API
Get live football scores, team performance metrics, league standings, and head-to-head match statistics all in one place. Search teams and leagues to access detailed player stats, comprehensive analytics, and in-depth performance data across football competitions worldwide.
psl.co.za API
Access real-time South African Premier Soccer League data including live scores, fixtures, results, standings, and match details. Search for clubs, news articles, and other PSL information to stay updated on the league.