# Detectiveconanworld — 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 comprehensive Detective Conan content including anime episodes, manga chapters, characters, movies, and OVAs with detailed information and search functionality. Build Detective Conan applications by retrieving episode details, character profiles, movie listings, and searching across the entire wiki database.

**Category:** Entertainment | **Website:** [detectiveconanworld.com/](https://detectiveconanworld.com/) | **Docs:** [parse.bot/marketplace/27cbb26f-9dfa-44cb-a491-a5cbed17a530/detectiveconanworld-com-api](https://parse.bot/marketplace/27cbb26f-9dfa-44cb-a491-a5cbed17a530/detectiveconanworld-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-detectiveconanworld-com-api-27cbb26f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_anime_episode_detail

Retrieves detailed information for a specific anime episode by its wiki page title. Returns infobox metadata (Japanese title, airdate, broadcast rating, cast, director, etc.), episode thumbnail image URL, and plot summary when available. Fields vary by episode based on available wiki infobox data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_title` | string | Yes | The wiki page title of the episode, using underscores for spaces (e.g. 'Roller_Coaster_Murder_Case') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_anime_episode_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_title":"<string>"}'
```

### get_anime_episode_list

Retrieves anime episodes for a specific season from the Detective Conan World Wiki. Returns episode metadata including Japanese/international numbers, titles, broadcast dates, manga sources, and plot categories. Each season corresponds to a heading on the wiki's Anime page (e.g. 'Season 1', 'Season 30'). Partial season name matches are supported.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `season` | string | Yes | Season name to filter episodes. Must match a season heading on the wiki (e.g. 'Season 1', 'Season 2', 'Season 30'). Partial matches are supported. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_anime_episode_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"season":"<string>"}'
```

### get_character_detail

Retrieves a detailed character profile from the character's wiki page. Returns name, profile image, and all infobox fields (age, gender, occupation, first appearance, voice actors, etc.). Available fields vary per character based on wiki infobox content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_title` | string | Yes | Character page title using underscores for spaces (e.g. 'Conan_Edogawa', 'Shinichi_Kudo') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_character_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_title":"<string>"}'
```

### get_character_list

Retrieves all characters from the Characters category on the wiki via the MediaWiki category API. Returns character names and wiki page URLs. Paginates internally to fetch the complete list (typically 700+ characters).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_character_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_manga_chapter_list

Retrieves all manga cases from the Detective Conan World Wiki. Returns case numbers, names, volumes, chapter numbers, anime episode references, and scene images. No filtering — the full list is returned in one request.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_manga_chapter_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_movies_list

Retrieves all Detective Conan theatrical movies from the wiki. Returns movie numbers, titles, original release dates, and wiki page URLs. The full list is returned in one request.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_movies_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_ovas_list

Retrieves all Detective Conan OVAs (Original Video Animations) from the wiki. Returns OVA numbers, titles, release dates, and wiki page URLs. The full list is returned in one request.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/get_ovas_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_wiki

Full-text search across the Detective Conan World Wiki via the MediaWiki search API. Returns matching page titles, text snippets, and URLs. Results are limited to the first page (10 results) with the total hit count provided for reference.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-detectiveconanworld-com-api-27cbb26f/search_wiki \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
