Discover/Detective Conan World API
live

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.

Endpoint health
verified 3d ago
get_character_detail
get_movies_list
get_ovas_list
get_anime_episode_list
get_anime_episode_detail
8/8 passing latest checkself-healing
Endpoints
8
Updated
26d ago

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.

Try it
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.
api.parse.bot/scraper/10bae536-48ea-4a81-828a-190a106a30c4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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)
All endpoints · 8 totalmissing one? ·

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.

Input
ParamTypeDescription
seasonrequiredstringSeason name to filter episodes. Must match a season heading on the wiki (e.g. 'Season 1', 'Season 2', 'Season 30'). Partial matches are supported.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
3d ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a season-by-season episode guide app using get_anime_episode_list with broadcast dates and plot categories
  • Cross-reference manga cases with their anime episode adaptations using the anime_episodes field from get_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_wiki query 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 image and plot_summary fields from get_anime_episode_detail
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Detective Conan World have an official developer API?+
Detective Conan World (detectiveconanworld.com) does not publish an official public developer API or documented data access layer for third-party use.
What does `get_anime_episode_list` return and how do I filter by season?+
The endpoint returns an array of episode objects for the season you specify via the 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?+
Not currently. The episode endpoints return infobox fields, broadcast dates, plot summaries, and images, but do not include voice cast lists or production staff credits. You can fork this API on Parse and revise it to add an endpoint that targets those fields from individual episode pages.
Does `get_character_detail` return full relationship or appearance history data?+
The endpoint returns structured infobox fields — 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?+
The endpoint returns a 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.
Page content last updated . Spec covers 8 endpoints from detectiveconanworld.com.
Related APIs in EntertainmentSee all →
aniwatchtv.to API
Extract all
anime.com API
Browse anime news, discover shows with detailed information and episode lists, and participate in community polls and discussions all from one unified service. Search across anime.com's comprehensive database to find exactly what you're looking for.
anidb.net API
Search and explore comprehensive anime data including titles, characters, episodes, and seasonal charts. Get detailed information about specific anime series, characters, and episodes to discover new shows and learn more about your favorite series.
wikia.org API
Search and retrieve detailed information about characters, episodes, lore, and other content from Fandom wikis across thousands of fan communities. Browse wiki categories, look up specific pages, and access structured data about your favorite franchises all in one place.
animenewsnetwork.com API
Access the latest anime news, reviews, ratings, and release schedules from Anime News Network. Retrieve top-rated anime rankings, read professional reviews, look up detailed series information, and browse upcoming premiere dates.
mydramalist.com API
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.
webtoons.com API
Search and discover Webtoon series by title or genre, view episode details and images, check rankings and trending content, and learn about authors and their works. Access comprehensive information about original and canvas series to find your next favorite read.
omegascans.org API
Browse and search thousands of comics and novels, view chapters and series details, and stay updated with the latest announcements and releases from Omega Scans. Discover new content through the homepage, search specific series, and access chapter-by-chapter reading with real-time updates on what's newly published.