Detective Conan World APIdetectiveconanworld.com ↗
Access Detective Conan anime episodes, manga chapters, characters, movies, and OVAs from the Detective Conan World Wiki via 8 structured endpoints.
What is the Detective Conan World API?
This API exposes 8 endpoints covering the full Detective Conan World Wiki catalog, from anime episode listings and detailed episode infoboxes to character profiles, manga case records, movies, OVAs, and full-text wiki search. The get_anime_episode_list endpoint returns per-season episode data including Japanese and international episode numbers, broadcast dates, and plot categories, while get_character_detail surfaces structured infobox fields like age, occupation, and gender for any named character.
curl -X GET 'https://api.parse.bot/scraper/10bae536-48ea-4a81-828a-190a106a30c4/get_anime_episode_list?season=Season+1' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace detectiveconanworld-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
from parse_apis.detective_conan_world_wiki_api import DetectiveConanWiki, EpisodeSummary, Character, Movie, WikiPage
wiki = DetectiveConanWiki()
# Search the wiki for a topic
for result in wiki.wikipages.search(query="Black Organization"):
print(result.title, result.url)
# Get episodes from Season 1
for ep in wiki.season("Season 1").episodes():
print(ep.title, ep.original_broadcast, ep.manga_source)
# Get detailed episode info via the summary's navigation method
episode = wiki.episodes.get(page_title="Roller_Coaster_Murder_Case")
print(episode.title, episode.url, episode.image)
# List all characters and drill into one
for char_summary in wiki.charactersummaries.list(limit=5):
print(char_summary.name, char_summary.url)
character = wiki.characters.get(page_title="Conan_Edogawa")
print(character.name, character.url, character.image)
# List movies
for movie in wiki.movies.list():
print(movie.number, movie.title, movie.original_release)
# List OVAs
for ova in wiki.ovas.list(limit=3):
print(ova.number, ova.title, ova.release_date)
# List manga cases
for case in wiki.mangacases.list(limit=5):
print(case.case_number, case.case_name, case.volume)
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.
| Param | Type | Description |
|---|---|---|
| seasonrequired | string | 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. |
{
"type": "object",
"fields": {
"total": "integer count of episodes returned",
"episodes": "array of episode summary objects with japanese_number, international_number, title, original_broadcast, english_dub_broadcast, plot_categories, manga_source, next_conan_hint, detail_url, season"
},
"sample": {
"data": {
"total": 42,
"episodes": [
{
"title": "Roller Coaster Murder Case",
"season": "Season 1 - Episodes 1-42",
"detail_url": "https://www.detectiveconanworld.com/wiki/Roller_Coaster_Murder_Case",
"manga_source": "V1 ~ F1(001)",
"japanese_number": "1",
"next_conan_hint": "N/A",
"plot_categories": [
"New character",
"Character development",
"Romance"
],
"original_broadcast": "January 8, 1996",
"international_number": "1",
"english_dub_broadcast": "May 24, 2004(Funimation)July 3, 2025(Netflix)"
}
]
},
"status": "success"
}
}About the Detective Conan World API
Anime and Episode Data
The get_anime_episode_list endpoint accepts a season parameter (e.g. 'Season 1') and returns an array of episode objects containing japanese_number, international_number, title, original_broadcast, english_dub_broadcast, plot_category, and references to manga source material. To get deeper detail on a specific episode, get_anime_episode_detail takes a page_title with underscores for spaces (e.g. 'Roller_Coaster_Murder_Case') and returns the episode's image, plot_summary, infobox fields, and a direct url to the wiki page.
Manga, Movies, and OVAs
get_manga_chapter_list returns the full case list with no required parameters — each case object includes case_number, case_name, volume, chapters, anime_episodes cross-references, and a scene_image URL. get_movies_list and get_ovas_list both return complete catalog arrays with number, title, release date fields, and wiki url per entry. These three endpoints require no input and return the full dataset in one response.
Characters and Search
get_character_list retrieves every character in the wiki's Characters category, returning name and url for each entry alongside a total count. For individual profiles, get_character_detail accepts a page_title and returns structured infobox fields including age, gender, and occupation alongside the character image URL. The search_wiki endpoint accepts any free-text query and returns matching results with title, snippet, and url, plus a total count of all matching pages across the wiki.
The Detective Conan World API is a managed, monitored endpoint for detectiveconanworld.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when detectiveconanworld.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official detectiveconanworld.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a season-by-season episode guide app using
get_anime_episode_listwith broadcast dates and plot categories - Cross-reference manga cases with their anime episode adaptations using the
anime_episodesfield fromget_manga_chapter_list - Populate a character database with structured infobox data (age, occupation, gender) via
get_character_detail - Generate a complete movie timeline with release dates using
get_movies_list - Add a wiki-powered search feature to a fan site or Discord bot using
search_wikiquery results - Build an OVA tracker listing all entries with release dates from
get_ovas_list - Display episode thumbnails and plot summaries in a mobile app using the
imageandplot_summaryfields fromget_anime_episode_detail
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Detective Conan World have an official developer API?+
What does `get_anime_episode_list` return and how do I filter by season?+
season parameter. Each object includes japanese_number, international_number, title, original_broadcast, english_dub_broadcast, plot_category, and manga source references. The season value must match a heading on the wiki's Anime page exactly, such as 'Season 1' or 'Season 2'.Are episode voice cast or staff credits returned by any endpoint?+
Does `get_character_detail` return full relationship or appearance history data?+
name, age, gender, occupation, and image — plus the wiki url. Full relationship lists, episode appearance histories, and plot-level narrative data are not currently included in the response. You can fork this API on Parse and revise it to extract those sections from the character page.Does `search_wiki` return paginated results or the full result set?+
results array of matched pages with title, snippet, and url, along with a total count of all matching wiki pages. The response reflects what the wiki search surfaces for the given query; there is no pagination parameter exposed in this endpoint.