Discover/AniDB API
live

AniDB APIanidb.net

Access AniDB anime metadata, episode details, character data, and seasonal charts via 7 REST endpoints. Search titles, filter by season, type, and year.

Endpoint health
verified 1d ago
search_character
get_episode_details
get_character_details
get_anime_details
get_season_chart
7/7 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the AniDB API?

The AniDB API exposes 7 endpoints covering anime search, full series metadata, character lookups, episode details, and seasonal charts drawn from AniDB's community-maintained database. The get_anime_details endpoint alone returns episode lists with air dates and durations, tags, descriptions, and ratings for any series by numeric ID. Whether you need to search by keyword or filter by year, season, and airing status, the API gives structured JSON back for every request.

Try it
Search keyword or anime title (e.g. 'Naruto', 'Dragon Ball').
api.parse.bot/scraper/85433efe-2087-4e5a-bff1-1c78cbd5820a/<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/85433efe-2087-4e5a-bff1-1c78cbd5820a/search_anime?query=Naruto' \
  -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 anidb-net-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.anidb_anime_database_api import AniDB, Season, AiringStatus

anidb = AniDB()

# Search for anime by keyword
for anime in anidb.animes.search(query="Naruto"):
    print(anime.title, anime.score)

# Get full details for a specific anime
details = anidb.animes.get(id="239")
print(details.title, details.description, details.rating)

# Browse episodes from the detail
for ep in details.episodes:
    print(ep.title, ep.id)

# Filter anime by year, type, and airing status using enum
for item in anidb.animes.filter(year=2002, types="tvseries", airing_status=AiringStatus.FINISHED):
    print(item.title, item.type, item.aired)

# Get seasonal chart with Season enum
for seasonal in anidb.animes.chart(year=2024, season=Season.SPRING):
    print(seasonal.title, seasonal.type_info, seasonal.rating)

# Search characters
for char in anidb.characters.search(query="Goku"):
    print(char.name, char.gender)

# Get character details and their anime appearances
character = anidb.characters.get(id="226")
print(character.name, character.description)
for appearance in character.related_anime:
    print(appearance.title, appearance.role)

# Get episode details
episode = anidb.episodes.get(id="2732")
print(episode.title, episode.description)
All endpoints · 7 totalmissing one? ·

Search for anime by title or keyword. Returns up to 25 results ranked by relevance score. Results include anime ID, title, and search score.

Input
ParamTypeDescription
queryrequiredstringSearch keyword or anime title (e.g. 'Naruto', 'Dragon Ball').
Response
{
  "type": "object",
  "fields": {
    "items": "array of anime search results with id, title, and score",
    "total": "integer count of items returned"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "17897",
          "score": "16.008",
          "title": "Naruto (2023)"
        },
        {
          "id": "239",
          "score": "7.670",
          "title": "Naruto"
        }
      ],
      "total": 25
    },
    "status": "success"
  }
}

About the AniDB API

Anime Search and Metadata

The search_anime endpoint accepts a query string and returns up to 30 results, each with an id, title, and relevance score. When the query matches a single title exactly, the result may be a single-item array. To fetch full metadata, pass that id to get_anime_details, which returns the title, description, a tags array, and a complete episodes array — each episode object includes id, number, title, duration, and airdate. For multi-filter queries, advanced_search_anime accepts a query alongside year, season, types (comma-separated type names like tvseries), and an airing_status integer, returning up to 25 ranked results.

Characters and Episodes

search_character accepts a query and returns up to 30 matching characters with id, name, and gender. Passing a character id to get_character_details retrieves name, description, and a related_anime array where each entry includes the anime's id, title, and the character's role in that series. Individual episodes can be fetched directly with get_episode_details using a numeric episode id, returning title, description, air_date, and play_length fields without needing to go through the parent anime.

Seasonal Charts

The get_season_chart endpoint accepts an optional year integer and a season string (winter, spring, summer, or autumn). The response is an items array where each entry includes id, title, date, type_info, rating, and average. This makes it straightforward to build season-browsing features or compare ratings across a single cour. If neither parameter is provided, the endpoint returns data for the current or most recently populated season.

Reliability & maintenanceVerified

The AniDB API is a managed, monitored endpoint for anidb.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when anidb.net 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 anidb.net 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
1d ago
Latest check
7/7 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 an anime recommendation engine using tags and ratings from get_anime_details.
  • Populate a seasonal airing calendar using get_season_chart with year and season filters.
  • Generate character profile pages using name, description, and related_anime from get_character_details.
  • Track episode air dates and durations for a watchlist app using the episodes array in get_anime_details.
  • Filter anime by type and airing status for a discovery tool using advanced_search_anime.
  • Cross-reference a character's appearances across multiple series using the related_anime field.
  • Fetch standalone episode synopses for a trivia or quiz application via get_episode_details.
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 AniDB have an official developer API?+
Yes. AniDB provides an official UDP-based API documented at https://wiki.anidb.net/UDP_API_Definition. It requires client registration and is lower-level than a REST API, exposing anime data over a custom UDP protocol. The Parse API delivers the same source data as structured JSON over standard HTTP without client registration.
What does `get_anime_details` return, and how does the episode data look?+
It returns id, title, description, tags (an array of tag name strings), and episodes. Each object in the episodes array includes id, number, title, duration, and airdate. Tags may be an empty array if the anime has none recorded on AniDB.
Does `search_anime` support pagination or return more than 30 results?+
search_anime returns up to 30 results per call and does not expose a pagination parameter. The total field reflects the count of items actually returned in that response, not the full database count. You can fork the API on Parse and revise it to add offset or page-based pagination if your use case requires deeper result sets.
Is staff, voice actor, or studio data available through this API?+
Not currently. The API covers anime metadata, episode details, character profiles, and seasonal charts. Staff credits, voice actor listings, and studio affiliations are not exposed in any current endpoint. You can fork the API on Parse and revise it to add an endpoint that retrieves that data.
How does the `airing_status` filter in `advanced_search_anime` work?+
The airing_status parameter accepts a numeric code; for example, 2 corresponds to finished airing. The accepted integer values map to AniDB's internal status taxonomy, so you should test values against known series to confirm which codes are active. The endpoint returns up to 25 results regardless of how many filters are applied.
Page content last updated . Spec covers 7 endpoints from anidb.net.
Related APIs in EntertainmentSee 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.
aniwatchtv.to API
Extract all
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.
detectiveconanworld.com API
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.
thetvdb.com API
Search and discover TV shows from TheTVDB's database, view trending series, and access detailed episode information. Browse complete show listings or find specific titles to retrieve comprehensive data about seasons, episodes, and air dates.
tmdb.org API
Search for movies and TV shows to discover details like cast, crew, reviews, images, videos, and where to watch them. Get information about actors, browse trending and popular titles, and access comprehensive metadata for entertainment planning.
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.