The API forManga & ManhwaData
Search thousands of series. Get chapters, ratings, cover art. No API key. No signup. Just build.
{
"success": true,
"data": {
"title": "Nano Machine",
"rating": 9.6,
"status": "Releasing",
"genres": ["Action", "Fantasy", "Martial Arts"],
"chapters_available": 310
}
}How It Works
Under the Hood
ShineiAPI sits between raw upstream data and your application — normalizing, caching, and protecting.
Toraka API
Raw manga & manhwa data from the upstream provider
ShineiAPI
Clean JSON
Consistent, well-structured responses ready for your app
Everything You Need
to Ship Faster
A complete API for building manga trackers, recommendation engines, and discovery tools.
Full-Text Search
Search thousands of manga, manhwa, and webtoons by title, genre, or author.
Rich Metadata
Synopsis, rating, genres, chapters, authors, artists, cover images, alt titles.
Sub-Second Responses
In-memory caching with configurable TTL. Repeated requests served in milliseconds.
Zero Authentication
No API keys, no sign-ups, no OAuth dances. Make a request, get JSON.
CORS Ready
Call directly from any frontend — browser, mobile, desktop, extension.
Middleware Architecture
Built on Toraka with caching, rate limiting, error handling, normalization.
Rate Limiting
60 req/min per IP with informative headers. Fair usage enforced.
Developer First
Consistent envelope, descriptive errors, multi-language examples.
Clean, Predictable
Endpoints
Every response follows the same envelope format. No surprises.
/api/v1/series/api/v1/series/{slug}/api/v1/series/{slug}/chapters/api/v1/search?q={query}/api/v1/popular?type={type}/api/v1/random/api/v1/top/api/v1/schedule?day={day}/api/v1/genres/api/v1/statsCommon
Recipes
Real-world code snippets to get you building immediately. Copy, paste, ship.
Search for a Series
Find any manga or manhwa by title with full-text search and relevance ranking.
const res = await fetch(
'https://shineiapi.vercel.app/api/v1/search?q=Naruto'
);
const { data } = await res.json();
data.forEach(series => {
console.log(series.title); // "Naruto"
console.log(series.rating); // 9.2
console.log(series.chapters_count); // 700+
});Try It Now
Select an endpoint, configure parameters, and see live JSON responses. No API key needed.
Request new sources, endpoints, or features on GitHub.
Open an IssueReady to
Build?
Start using ShineiAPI today. Free, fast, and requires no authentication.