# Corinthians — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access official Corinthians team data including player rosters, detailed player profiles, staff information, news updates, and upcoming match schedules across men's, women's, and youth divisions. Stay informed about the club's latest news and upcoming games with real-time information directly from the official source.

**Category:** Sports | **Website:** [corinthians.com.br/](https://corinthians.com.br/) | **Docs:** [parse.bot/marketplace/0d7fb0b7-fe29-4ceb-942f-a8274ed081f5/corinthians-com-br-api](https://parse.bot/marketplace/0d7fb0b7-fe29-4ceb-942f-a8274ed081f5/corinthians-com-br-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_depto_futebol_profissional

Get the professional football department staff listing, including all roles from coaching staff to support personnel (medical, logistics, communications, nutrition, etc.).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_depto_futebol_profissional \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_formacao_sub20

Get the Sub-20 (under-20) youth squad roster, including player names, positions, and profile links.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_formacao_sub20 \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_futebol_feminino_elenco

Get the professional women's football squad grouped by position (Goleiras, Zagueiras, Laterais, Meias, Atacantes). Returns player names, positions, photos, and profile links.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_futebol_feminino_elenco \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_futebol_masculino_elenco

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

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_futebol_masculino_elenco \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_noticias

Get news articles from a specific category with pagination. Returns article titles, links, and thumbnails. Dates may be empty depending on page structure.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug for filtering news. |
| `page` | integer | No | Page number for pagination (starting at 1). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_noticias \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### get_player_detail

Get detailed profile for an individual player from the men's professional squad, including position, age, height, and birthplace. The player must be currently listed on the squad page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `player_name` | string | Yes | Full name of the player as listed on the squad page (e.g. 'Yuri Alberto', 'Rodrigo Garro', 'Memphis'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_player_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"player_name":"<string>"}'
```

### get_proxima_partida

Get upcoming matches from the Corinthians event calendar. Returns up to 5 next scheduled games (category 'Jogos') from today onwards, including title, date, time, and competition category. Uses the calendar API to find future fixtures across all Corinthians teams.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-corinthians-com-br-api-0d7fb0b7/get_proxima_partida \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
