AnimeNewsNetwork API
Overview
Anime News Network exposes its encyclopedia data as a free XML API, covering anime and manga titles, cast, staff, genres, and release information maintained by professional journalists. No API key is required. Use it to build an anime reference tool or to enrich your app with high-quality editorial data.
Beginner Tip
The API returns XML, not JSON. Start with https://www.animenewsnetwork.com/encyclopedia/api.php?title=~naruto to search by title — the ~ prefix means "starts with" in their query syntax.
Available Data
Example Response
{
"totalArticles": 100,
"articles": [
{
"title": "Tech Industry Sees Record Growth",
"source": {
"name": "TechNews",
"url": "https://technews.com"
},
"publishedAt": "2025-01-15T08:00:00Z",
"description": "The technology sector reported unprecedented growth...",
"image": "https://example.com/article-image.jpg",
"url": "https://technews.com/article/123"
}
]
} Field Reference
ann/anime/@id Unique ANN internal ID for the anime title ann/anime/@name Official title of the anime as listed on ANN ann/anime/info[@type=Genres] Comma-separated genre tags such as action or fantasy ann/anime/info[@type=Vintage] Air date or date range of the series broadcast ann/anime/ratings/@nb_votes Number of community votes submitted for this title Implementation Example
const url = "https://www.animenewsnetwork.com/encyclopedia/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →AnimeChan
⭐ Beginner's PickAnimeChan serves a database of 10,000+ anime quotes with character and anime title metadata.
AnimeFacts
⭐ Beginner's PickAnimeFacts is a simple REST API with over 100 trivia facts about popular anime series, accessible by an anime slug name.
Catboy
⭐ Beginner's PickCatboy serves random neko (anime cat-person) images and GIFs across several mood categories with no API key required.
Jikan
⭐ Beginner's PickJikan is an unofficial REST API for MyAnimeList that lets you fetch anime and manga data without OAuth setup.
NekosBest
⭐ Beginner's PickNekosBest serves anime-style neko (cat-girl) images and roleplay GIF reactions like hugging, patting, or waving, all sourced from a curated anime art collection.