animecorner.me APIanimecorner.me ↗
Fetch top weekly anime news posts and paginated latest articles from Anime Corner via two structured endpoints returning titles, authors, dates, and excerpts.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/db58ea0f-d58d-4da4-8bdf-0c385aa4391e/get_popular_posts' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the top popular anime news posts of the week from the Anime Corner homepage. Returns ranked posts ordered by popularity.
No input parameters required.
{
"type": "object",
"fields": {
"count": "integer",
"posts": "array of popular post objects with rank, title, url, date, and image_url"
},
"sample": {
"count": 9,
"posts": [
{
"url": "https://animecorner.me/mushoku-tensei-season-3-new-trailer-introduces-ending-theme-song-by-mika-nakashima/",
"date": "June 4, 2026",
"rank": 1,
"title": "Mushoku Tensei Season 3 New Trailer Introduces Ending...",
"image_url": "https://static.animecorner.me/2026/06/1780570795-268b60188c9682abd283502a32821e2a-300x169.png"
},
{
"url": "https://animecorner.me/spring-2026-anime-rankings-week-9/",
"date": "June 5, 2026",
"rank": 2,
"title": "Spring 2026 Anime Rankings - Week 9",
"image_url": "https://static.animecorner.me/2026/06/1780664052-2a72afb6048712998336a4f98df391c9-300x169.png"
}
]
}
}About the animecorner.me API
The Anime Corner API provides access to anime news content through 2 endpoints: get_popular_posts returns the week's ranked popular posts from the Anime Corner homepage, and get_news delivers paginated article listings with up to 10 items per page. Each response includes structured fields such as title, url, author, date, image_url, and excerpt, making it straightforward to build news feeds, trending trackers, or content aggregators around anime journalism.
Endpoints and Data Returned
The get_popular_posts endpoint returns a ranked list of the week's most popular posts on Anime Corner. The response includes a count integer and a posts array where each object carries a rank, title, url, date, and image_url. No input parameters are required — each call returns the current week's snapshot.
Paginated News Articles
The get_news endpoint returns the latest anime news articles with pagination support. Pass an optional page integer (must be positive) to navigate beyond the first page of results. An optional category string parameter accepts a slug to filter by topic; the confirmed working value is news. Each response includes a page integer, a count of results, a has_next_page boolean for detecting additional pages, and an articles array. Each article object contains title, url, author, date, image_url, and excerpt.
Coverage and Freshness
Anime Corner publishes anime industry news, seasonal rankings, and community coverage. The get_popular_posts endpoint reflects current weekly popularity rankings as surfaced on the homepage. The get_news endpoint surfaces articles in reverse-chronological order. The has_next_page field lets callers implement forward-only pagination without needing to know the total page count in advance.
- Build a weekly trending anime news widget using ranked posts from
get_popular_posts - Aggregate anime headlines into a Discord or Slack bot using article
titleandurlfields fromget_news - Track which anime titles appear most frequently across weekly popular posts
- Display article thumbnails and excerpts in a news feed app using
image_urlandexcerptfields - Monitor Anime Corner author activity by tracking the
authorfield across paginated articles - Create an email digest of the week's top anime stories using rank and title data from popular posts
- Paginate through the full article archive for content analysis using the
has_next_pageboolean
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Anime Corner have an official developer API?+
What does the `get_popular_posts` endpoint return, and how is it ordered?+
posts array ordered by popularity rank for the current week. Each object includes rank, title, url, date, and image_url. There are no filter parameters — the endpoint always reflects the current weekly snapshot from the homepage.How does pagination work in `get_news`, and how do I know when I've reached the last page?+
page integer to request a specific page; each page returns up to 10 articles. The has_next_page boolean in the response indicates whether additional pages exist, allowing forward-only iteration without needing a total page count.Does the API return full article body content?+
get_news endpoint returns an excerpt field rather than the full article body. Each article object also includes url, so full content can be retrieved by following the link directly. You can fork this API on Parse and revise it to add a full article detail endpoint if you need the complete body text.Can I filter news articles by categories other than 'news'?+
category parameter in get_news accepts a slug string, but only news is a confirmed working value at this time. Other category slugs from the Anime Corner site are not currently validated. You can fork this API on Parse and revise it to test and expose additional category slugs.