# Mydramalist — 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.

> Search and discover Asian dramas from MyDramaList, including Korean, Japanese, Chinese, Taiwanese, Thai, and Hong Kong shows. Retrieve comprehensive details such as cast, ratings, synopses, genres, airing schedules, and episode information across thousands of titles.

**Category:** Entertainment | **Website:** [mydramalist.com/](https://mydramalist.com/) | **Docs:** [parse.bot/marketplace/1cd62f44-9792-419b-885e-efe22e162c25/mydramalist-com-api](https://parse.bot/marketplace/1cd62f44-9792-419b-885e-efe22e162c25/mydramalist-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-mydramalist-com-api-1cd62f44/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_drama_details

Get detailed information about a specific drama including title, score, synopsis, genres, tags, airing details, and popularity metrics. The drama_id is the slug from the drama URL (e.g. '18452-goblin' or '735043-life'), obtainable from search_dramas results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `drama_id` | string | Yes | Drama slug ID from the URL path (e.g. '18452-goblin', '735043-life'). Obtainable from search_dramas results[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mydramalist-com-api-1cd62f44/get_drama_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"drama_id":"<string>"}'
```

### search_dramas

Search for dramas on MyDramaList with filters for country, year range, and sorting. Returns paginated results with title, rating, ranking, metadata, and synopsis for each drama. Results default to South Korea and Japan when no country filter is provided. Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Comma-separated country names or numeric IDs. Accepted names: 'South Korea', 'Japan', 'China', 'Taiwan', 'Thailand', 'Hong Kong'. Omit to search across South Korea and Japan by default. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword to filter dramas by title or content. |
| `sort` | string | No | Sort order for results. |
| `year_end` | integer | No | End year for the release date range filter. |
| `year_start` | integer | No | Start year for the release date range filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mydramalist-com-api-1cd62f44/search_dramas \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","page":"<integer>","query":"<string>","sort":"<string>","year_end":"<integer>","year_start":"<integer>"}'
```
