# Korea Baseball Organization — 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.

> Retrieve KBO (Korea Baseball Organization) game schedules for any year and month, with the ability to filter results by specific teams to plan your viewing schedule. Access complete game dates and matchups to stay updated on your favorite Korean baseball teams' upcoming contests.

**Category:** Sports | **Website:** [www.koreabaseball.com/Schedule/Schedule.aspx](https://www.koreabaseball.com/Schedule/Schedule.aspx) | **Docs:** [parse.bot/marketplace/94785380-1559-45df-a2b8-58bad46be68a/koreabaseball-com-api](https://parse.bot/marketplace/94785380-1559-45df-a2b8-58bad46be68a/koreabaseball-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-koreabaseball-com-api-94785380/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Retrieve the KBO league game schedule for a given year and month. Returns all games with date, time, home team, away team, and stadium. Optionally filter by a specific team to see only that team's games. Results are auto-iterated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | string | Yes | 1 or 2-digit month number (e.g. 7 or 07). |
| `team_id` | string | No | Team code to filter schedule for a specific team. Known codes: LG, SSG, KIA, NC, KT. Omit to return all games. |
| `year` | string | Yes | 4-digit season year (e.g. 2026). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-koreabaseball-com-api-94785380/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"month":"<string>","team_id":"<string>","year":"<string>"}'
```
