Discover/Anime News Network API
live

Anime News Network APIanimenewsnetwork.com

Access ANN news articles, anime reviews, top-rated rankings, series details, and premiere schedules via 5 structured JSON endpoints.

Endpoint health
verified 57m ago
get_release_schedule
get_top_anime
get_anime_details
get_reviews
get_recent_news
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Anime News Network API?

The Anime News Network API exposes 5 endpoints covering news, reviews, encyclopedia ratings, series details, and upcoming release schedules from animenewsnetwork.com. The get_anime_details endpoint alone returns up to seven structured fields per series — including episode lists, genre tags, plot summaries, and Bayesian scores — while get_top_anime surfaces ranked entries with vote counts and multiple rating averages drawn from the ANN encyclopedia.

Try it
Maximum number of news articles to return.
api.parse.bot/scraper/9cbf5fbc-2873-48ce-87bb-1008ca5e3678/<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/9cbf5fbc-2873-48ce-87bb-1008ca5e3678/get_recent_news?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 animenewsnetwork-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: ANN SDK — discover top anime, drill into details, browse news and reviews."""
from parse_apis.anime_news_network_ann_api import ANN, AnimeNotFound

client = ANN()

# Browse top-rated anime — limit caps total items fetched.
for anime in client.animesummaries.list(limit=5):
    print(anime.title, anime.bayesian_average)

# Drill into the #1 ranked anime for full details.
top = client.animesummaries.list(limit=1).first()
if top:
    detail = top.details()
    print(detail.name, detail.type, detail.ratings.bayesian_score)
    for ep in detail.episodes[:3]:
        print(ep.number, ep.title)

# Check upcoming releases.
for release in client.releases.list(limit=3):
    print(release.title, release.release_date)

# Read latest news articles.
article = client.articles.list(limit=1).first()
if article:
    print(article.title, article.author, article.publication_date)

# Typed error handling for anime lookup.
try:
    bad = client.animesummaries.list(limit=1).first()
    if bad:
        bad.details()
except AnimeNotFound as exc:
    print(f"Anime not found: {exc}")

# Browse recent reviews.
for review in client.reviews.list(limit=3):
    print(review.title, review.rating, review.reviewer)

print("exercised: animesummaries.list / details / releases.list / articles.list / reviews.list")
All endpoints · 5 totalmissing one? ·

Fetch the most recent news articles from Anime News Network via their RSS feed. Returns article titles, URLs, publication dates, authors, and content snippets. Articles are ordered newest-first. Each article requires an individual page fetch for full content, so larger limits are slower.

Input
ParamTypeDescription
limitintegerMaximum number of news articles to return.
Response
{
  "type": "object",
  "fields": {
    "news": "array of news article objects with title, url, publication_date, author, and content"
  },
  "sample": {
    "data": {
      "news": [
        {
          "url": "https://www.animenewsnetwork.com/news/2026-06-11/g2-red-aura-webtoon-gets-english-release/.238403",
          "title": "G2's Red Aura Webtoon Gets English Release",
          "author": "Wonhee Cho",
          "content": "Image courtesy of G2...",
          "publication_date": "Thu, 11 Jun 2026 06:30:00 -0400"
        }
      ]
    },
    "status": "success"
  }
}

About the Anime News Network API

News and Reviews

get_recent_news returns an array of article objects, each with title, url, publication_date, author, and a content snippet. The optional limit parameter controls how many articles come back. get_reviews follows the same shape, adding a reviewer field and a rating value alongside the review text. Both endpoints reflect editorial content published by ANN staff.

Encyclopedia Ratings and Rankings

get_top_anime pulls from ANN's Bayesian rating report and returns each entry's anime_id, title, nb_votes, nb_seen, average, weighted_average, and bayesian_average. This gives you three distinct scoring signals in one response, which is useful when building ranking or recommendation logic that needs to distinguish raw average from vote-weighted scores.

Series Details and Release Schedule

get_anime_details accepts either an anime_id (the numeric ANN encyclopedia ID, e.g. 10216 for Fullmetal Alchemist: Brotherhood) or a free-text query string. The response object includes id, name, type, a ratings block with nb_votes, weighted_score, and bayesian_score, an episodes array of {number, title} objects, plus genres, themes, and a plot summary. get_release_schedule returns upcoming TV anime with id, title, and release_date in YYYY-MM-DD format, making it straightforward to build a premiere calendar.

Reliability & maintenanceVerified

The Anime News Network API is a managed, monitored endpoint for animenewsnetwork.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when animenewsnetwork.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 animenewsnetwork.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
57m ago
Latest check
5/5 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 premiere calendar using release_date fields from get_release_schedule
  • Rank series by bayesian_average and nb_votes for a recommendation engine using get_top_anime
  • Display episode-by-episode metadata for a series detail page using the episodes array from get_anime_details
  • Aggregate ANN review scores by genre to surface critic consensus using get_reviews rating data
  • Feed a news aggregator with timestamped anime industry headlines via get_recent_news
  • Cross-reference a series' weighted_score with external ratings by matching on the ANN anime_id
  • Monitor upcoming premieres and auto-notify users when a tracked title appears in get_release_schedule
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 News Network have an official developer API?+
ANN exposes a limited official XML API for encyclopedia data at https://www.animenewsnetwork.com/encyclopedia/api.php. It covers series lookups by ID but does not provide news feeds, review data, or the Bayesian ratings report in a structured programmatic form.
What rating fields does `get_top_anime` return, and how do they differ?+
get_top_anime returns three numeric rating fields per entry: average (raw mean of all submitted scores), weighted_average (mean adjusted for vote distribution), and bayesian_average (a Bayesian estimate that pulls low-vote titles toward a prior mean, reducing inflation from small sample sizes). nb_votes and nb_seen are also included so you can filter by audience size.
Can I look up manga or light novel details the way I can look up anime?+
Not currently. get_anime_details is scoped to anime series in the ANN encyclopedia and returns fields like episodes, type, and anime-specific ratings. Manga and light novel encyclopedia entries are not covered by the current endpoint set. You can fork this API on Parse and revise it to add a dedicated manga or novel details endpoint.
Does `get_anime_details` return character or staff information?+
Not currently. The endpoint returns series-level data: id, name, type, ratings, episodes, genres, themes, and a plot summary. Cast and staff credits are not included in the current response shape. You can fork this API on Parse and revise it to add character and staff fields.
How current is the data returned by `get_recent_news`?+
get_recent_news pulls from ANN's RSS feed, so freshness depends on how frequently that feed is updated by ANN. Articles appear in the feed shortly after publication. There is no date-range filter parameter; use the limit input to control the number of articles returned and process publication_date in your application for any time-based filtering.
Page content last updated . Spec covers 5 endpoints from animenewsnetwork.com.
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
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.
mangaupdates.com API
Track manga releases by day, look up detailed series information and genres, and monitor site statistics — all from MangaUpdates. Access release schedules, series metadata, and platform insights to stay updated on the latest manga.
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.
metacritic.com API
Search for games, movies, and TV shows, then retrieve detailed metadata, critic and user reviews, and ranked lists from Metacritic. Access comprehensive rating information and review data to discover top-rated entertainment content across all media types.
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.
gamespot.com API
Retrieve GameSpot reviews and detailed review information to read professional game critiques, browse user comments on those reviews, and check upcoming game release schedules. Stay informed about new game launches and community discussions all in one place.