AniPub API
AniPub API — AniPub API provides comprehensive metadata on anime, in…
AniPub API exposes aniPub API provides comprehensive metadata on anime, including streaming links, character details, and MAL integration. It allows users to search, filter, and sort anime data seamlessly through various endpoints. The API is free to use with no authentication required. We verified a keyless GET endpoint returning JSON (Anime). Check the provider docs for rate limits and terms before production use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://anipub.xyz/api/findbyGenre/harem?Page=1%3C/div%3E
{
"currentPage": 1,
"wholePage": [
{
"_id": 51,
"Name": "Masamune-kun's Revenge",
"ImagePath": "https://cdn.noitatnemucod.net/thumbnail/300x400/100/f6226f8bd9467df402717496b7b8d08b.jpg",
"MALScore": "7.35",
"RatingsNum": 35,
"DescripTion": "When Masamune Makabe was a child, he was rejected by a rich, beautiful girl named Aki Adagaki, who gave him the nickname ''Piggy'' for being overweight. Devastated, Masamune put great effort into working out to improve his appearance. Now a handsome yet narcissistic high school student, Masamune is determined to exact revenge—he will have Aki fall madly in love with him and ultimately reject her the next time they meet. To his surprise, Masamune discovers he has transferred into Aki's school. Setting his plan into motion, Masamune first begins to form a relationship with the ''Brutal Princess'' but, despite his efforts, fails miserably at his initial attempts. Shockingly, when Masamune finally progresses towards his vengeance, he receives a mysterious letter addressing him by his old nickname. Unless Masamune discovers the sender's identity, his plan is doomed before it even starts!",
"finder": "masamune-kuns-revenge"
},
{
"_id": 52,
"Name": "Masamune-kun's Revenge R",
"ImagePath": "https://cdn.noitatnemucod.net/thumbnail/300x400/100/174a13011301d3d0a2135f40162b8dee.jpg",
"MALScore": "8.11",
"RatingsNum": 40,
"DescripTion": "With the tumultuous cultural festival behind him, Masamune Makabe continues his efforts to carry out his revenge: to make the \"Cruel Princess\" Aki Adagaki deeply fall for him and then immediately dump her. As his class is going on a trip to Paris, widely known as the City of Love, Masamune has the perfect opportunity to get even for his childhood heartbreak. Before Masamune can impress Aki, the two meet Muriel Besson, a French high school otaku who aspires to create a romantic comedy manga series. Muriel believes Masamune is the ideal model for the protagonist and asks for his help. The boy reluctantly agrees, dragging Aki along to provide inspiration for the love interest's character. But to do so, the two must show Muriel what Japanese love is like. To make matters more complicated, Kanetsugu Gasou is masquerading as Aki's childhood friend, Masamune, to trick and use her. With mix-ups and love rivals galore, Masamune's revenge is proving to be quite the difficult task.",
"finder": "masamune-kuns-revenge-r"
}
]
}curl "https://anipub.xyz/api/findbyGenre/harem?Page=1%3C/div%3E"const res = await fetch("https://anipub.xyz/api/findbyGenre/harem?Page=1%3C/div%3E");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://anipub.xyz/api/findbyGenre/harem?Page=1%3C/div%3E")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/api/findbyGenre/harem?Page=1%3C/div%3EPROBEDAniPub API — AniPub API provides comprehensive metadata on anime, in…
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/findbyGenre/harem?limit=5Harem — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
AniPub API: common questions
Is AniPub API free to use?
Yes — AniPub API is a free anime API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does AniPub API need an API key?
No — AniPub API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call AniPub API from the browser?
Not directly — AniPub API doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is AniPub API up right now?
AniPub API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.