detectiveconanworld.com APIdetectiveconanworld.com ↗
Access Detective Conan anime episodes, manga chapters, characters, movies, and OVAs from the Detective Conan World Wiki via 8 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/10bae536-48ea-4a81-828a-190a106a30c4/get_anime_episode_list?season=Season+2' \ -H 'X-API-Key: $PARSE_API_KEY'
Get list of anime episodes for a specific season from the Detective Conan World Wiki Anime page. Returns episode details including titles, broadcast dates, manga sources, and plot categories.
| 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 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 detectiveconanworld.com 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.
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.
- 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 | 250 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.