# Documents Iplt20 — 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.

> Get detailed cricket statistics for Indian Premier League players, including their season-by-season batting and bowling performance as well as their complete career records. Track player performance metrics across all IPL seasons to analyze trends and compare player stats over time.

**Category:** Sports | **Website:** [documents.iplt20.com/bcci/documents/1731674068078_TATA%20IPL%202025-%20Auction%20List%20-15.11.24.pdf](https://documents.iplt20.com/bcci/documents/1731674068078_TATA%20IPL%202025-%20Auction%20List%20-15.11.24.pdf) | **Docs:** [parse.bot/marketplace/e148b8bc-f8df-4c0b-a873-b9c8347d43aa/documents-iplt20-com-api](https://parse.bot/marketplace/e148b8bc-f8df-4c0b-a873-b9c8347d43aa/documents-iplt20-com-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-documents-iplt20-com-api-e148b8bc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_batting_stats

Retrieve batting statistics for an IPL season, ranked by total runs (Orange Cap standings). Results include runs, batting average, strike rate, boundaries, and other batting metrics. Filterable by team. Results are auto-iterated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of players to return. |
| `season` | string | No | IPL season year. |
| `team_code` | string | No | Filter by team short code (e.g. CSK, MI, RCB, GT, RR, SRH, DC, PBKS, KKR, LSG). Omit or pass empty string to return all teams. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-documents-iplt20-com-api-e148b8bc/get_batting_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","season":"<string>","team_code":"<string>"}'
```

### get_bowling_stats

Retrieve bowling statistics for an IPL season, ranked by total wickets (Purple Cap standings). Results include wickets, bowling average, economy rate, strike rate, and other bowling metrics. Filterable by team. Results are auto-iterated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of players to return. |
| `season` | string | No | IPL season year. |
| `team_code` | string | No | Filter by team short code (e.g. CSK, MI, RCB, GT, RR, SRH, DC, PBKS, KKR, LSG). Omit or pass empty string to return all teams. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-documents-iplt20-com-api-e148b8bc/get_bowling_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","season":"<string>","team_code":"<string>"}'
```

### get_player_career_stats

Retrieve all-time IPL career statistics for a player by name. Returns both batting and bowling career aggregates where available. Partial name matching is supported (case-insensitive).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `player_name` | string | Yes | Player name to search for. Partial and case-insensitive matching is supported (e.g. 'Kohli' matches 'Virat Kohli'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-documents-iplt20-com-api-e148b8bc/get_player_career_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"player_name":"<string>"}'
```
