Discover/anime API
live

anime APIanime.com

Access anime.com data via 6 endpoints: browse shows, search titles, fetch episode lists by season, read news articles, and retrieve community polls.

Endpoint health
verified 3d ago
get_news_feed
get_shows_list
get_show_details
get_show_episodes
get_polls
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the anime API?

The anime.com API provides 6 endpoints covering the full anime.com catalog — shows, episodes, news, search, and community polls. Use get_show_details to retrieve a show's synopsis, genres, airing status, streaming platform links, and vote ratings by slug. Use get_show_episodes to pull every episode across all seasons, including air dates and per-episode ratings. The API returns structured JSON throughout, with cursor-based pagination on list endpoints.

Try it
Number of news items to fetch per page.
Pagination cursor from a previous response's endCursor to fetch the next page.
api.parse.bot/scraper/94db79a7-96a7-45d7-9a7d-cac3e29322ae/<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/94db79a7-96a7-45d7-9a7d-cac3e29322ae/get_news_feed?limit=5' \
  -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 anime-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.

"""Walkthrough: Anime.com SDK — browse, search, drill into details and episodes."""
from parse_apis.anime_com_api import Anime, ShowStatus, ShowNotFound

client = Anime()

# Browse top-rated shows from the catalog, capped at 5 items.
for show in client.catalogs.list(limit=5):
    print(show.title, show.vote_average, show.status)

# Search for a specific anime and drill into the first result's details.
result = client.catalogs.search(query="demon slayer", limit=1).first()
if result:
    detail = result.details()
    print(detail.title, detail.rating, detail.episode_count, detail.season_count)

    # Walk episodes for that show (capped).
    for ep in detail.episodes(limit=3):
        print(ep.season, ep.episode, ep.title, ep.air_date)

# Fetch latest news articles.
for article in client.newsfeeds.list(limit=3):
    print(article.title, article.author, article.published_at)

# Community polls.
for poll in client.communities.polls(limit=2):
    print(poll.question, poll.total_votes)

# Typed error handling: attempt to fetch a non-existent show.
try:
    client.shows.get(slug="nonexistent-show-xyz")
except ShowNotFound as exc:
    print(f"Show not found: {exc.slug}")

print("exercised: catalogs.list / catalogs.search / show.details / show.episodes / newsfeeds.list / communities.polls / shows.get")
All endpoints · 6 totalmissing one? ·

Fetch the latest anime news articles from social media and official sources. Returns paginated results sorted by recency with cursor-based pagination. Each article includes a summary, content, author, and publication date.

Input
ParamTypeDescription
limitintegerNumber of news items to fetch per page.
cursorstringPagination cursor from a previous response's endCursor to fetch the next page.
Response
{
  "type": "object",
  "fields": {
    "items": "array of news article objects with id, title, summary, content, published_at, author, url, and cursor",
    "endCursor": "string cursor for next page",
    "hasNextPage": "boolean indicating if more pages exist"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "019eb4d6-b50d-7eed-b411-cc6857ff2c75",
          "url": "https://www.anime.com/post/019eb4d6-b50d-7eed-b411-cc6857ff2c75",
          "title": "One Piece",
          "author": "Eiichiro_Staff",
          "cursor": "12.37:019eb4d6",
          "content": "TV anime info...",
          "summary": "One Piece Episode 1165 premieres.",
          "published_at": "2026-06-11T04:00:11.000Z"
        }
      ],
      "endCursor": "7.07:019eb416",
      "hasNextPage": true
    },
    "status": "success"
  }
}

About the anime API

Show Discovery and Search

The get_shows_list endpoint pages through the full anime catalog — series, OVA, ONA, specials, and more — sorted by vote_count descending. Each item returns id, slug, title, status, genres, poster_url, vote_average, and vote_count. Pagination is cursor-based: pass the endCursor from one response as the cursor parameter in the next call; check hasNextPage to know when to stop. The search endpoint accepts a query string and returns relevance-ranked results with the same core fields plus type, making it practical for autocomplete or title-lookup flows.

Show Details and Episodes

get_show_details takes a slug (obtainable from search or get_shows_list) and returns the full record for a single show: description, genres, status (e.g. AIRING or FINISHED), rating, vote_count, poster_url, and a streams array listing streaming platforms with their direct URLs. get_show_episodes returns all episodes for that slug, grouped by season and episode number, each with title, description, air_date, and vote_average.

News and Polls

get_news_feed returns paginated anime news articles sorted by recency. Each article object includes id, title, summary, content, author, published_at, and url. Pagination follows the same cursor model as the show list. get_polls returns the current set of active community polls with question, totalVotes, and a per-option breakdown of text, voteCount, and display order — no input parameters required.

Reliability & maintenanceVerified

The anime API is a managed, monitored endpoint for anime.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when anime.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 anime.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
6/6 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 discovery app that ranks titles by vote_average and links out to streams platform URLs.
  • Power a season/episode tracker by consuming get_show_episodes and storing air_date and vote_average per episode.
  • Populate a search-as-you-type interface using the search endpoint with query and displaying poster_url thumbnails.
  • Aggregate anime news into a digest or newsletter by polling get_news_feed and filtering on published_at.
  • Display active fan sentiment by embedding get_polls results with per-option voteCount breakdowns.
  • Filter the catalog to currently-airing shows by reading the status field from get_shows_list results.
  • Construct a show comparison tool using vote_count, vote_average, and genres from get_show_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 anime.com have an official developer API?+
anime.com does not publish an official public developer API or documentation for third-party use.
What does `get_show_details` return that `get_shows_list` does not?+
get_shows_list returns summary fields suitable for browsing: slug, title, status, genres, poster_url, vote_average, and vote_count. get_show_details adds description (the full synopsis) and the streams array, which lists streaming platforms and their direct URLs for that specific show.
How does pagination work across list endpoints?+
The get_news_feed and get_shows_list endpoints use cursor-based pagination. Each response includes an endCursor string and a hasNextPage boolean. To fetch the next page, pass the endCursor value as the cursor parameter in your next request. When hasNextPage is false, you have reached the last page.
Does the API return character or voice actor data for shows?+
Not currently. The API covers show metadata, episode lists, streaming links, news articles, and community polls. Character profiles and voice actor credits are not included in any current endpoint. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Can I filter shows by genre or airing status directly?+
get_shows_list does not accept genre or status filter parameters — it returns results sorted by vote count and includes genres and status fields in each item for client-side filtering. The search endpoint supports free-text queries but not structured filters. You can fork this API on Parse and revise it to add genre or status filter parameters.
Page content last updated . Spec covers 6 endpoints from anime.com.
Related APIs in EntertainmentSee all →
aniwatchtv.to API
Extract all
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.
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.
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.
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.