Loading...
High-performance comic/manga reader API
The MLord API provides programmatic access to our extensive collection of comics, manga, manhwa, and webtoons. All responses are returned in JSON format with CORS enabled.
Powered by Fastly Compute@Edge for ultra-low latency
100 requests per minute per IP with bot detection
Intelligent edge caching for blazing-fast responses
https://api.mlord.ioThe API is currently publicly accessible without authentication. Please respect rate limits and use responsibly.
/api/comicsList all comics with optional filtering and sorting
pageoptional(number)Page number for pagination (default: 1)limitoptional(number)Results per page (default: 20)sortoptional(string)Sort by: updatedAt, popular, rating, bookmarksgenreoptional(string)Filter by genretypeoptional(string)Filter by type: manga, manhwa, manhua, webtoonstatusoptional(string)Filter by status: ongoing, completed, hiatus{ comics: Comic[], total: number, page: number, totalPages: number }https://api.mlord.io/api/comics?sort=popular&limit=10/api/comics/:slugGet detailed information about a specific comic
slugrequired(string)Comic slug identifierComichttps://api.mlord.io/api/comics/solo-leveling/api/comics/:slug/chaptersGet all chapters for a comic
slugrequired(string)Comic slug identifier{ chapters: Chapter[] }https://api.mlord.io/api/comics/solo-leveling/chapters/api/comics/:slug/chapters/:chapterIdGet a specific chapter with all pages
slugrequired(string)Comic slug identifierchapterIdrequired(string)Chapter IDChapterhttps://api.mlord.io/api/comics/solo-leveling/chapters/123abc/api/genresGet list of all available genres
{ genres: string[] }https://api.mlord.io/api/genres{
"_id": "string",
"title": "string",
"slug": "string",
"description": "string",
"coverImage": "string (URL)",
"author": "string",
"artist": "string",
"type": "manga | manhwa | manhua | webtoon | comic",
"status": "ongoing | completed | hiatus",
"genres": ["string"],
"rating": number,
"views": number,
"bookmarks": number,
"createdAt": "ISO8601 date",
"updatedAt": "ISO8601 date"
}{
"_id": "string",
"title": "string",
"chapterNumber": number,
"pages": ["string (image URL)"],
"publishedAt": "ISO8601 date",
"comic": {
"_id": "string",
"title": "string",
"slug": "string"
},
"prevChapter": {
"_id": "string",
"chapterNumber": number,
"title": "string"
} | null,
"nextChapter": {
"_id": "string",
"chapterNumber": number,
"title": "string"
} | null
}The API implements rate limiting to ensure fair usage and service stability:
⚠️ Note: If you need higher rate limits for legitimate use cases, please contact us.
| Code | Meaning |
|---|---|
200 | Success |
400 | Bad Request - Invalid parameters |
403 | Forbidden - Bot detected |
404 | Not Found - Resource does not exist |
429 | Too Many Requests - Rate limit exceeded |
500 | Internal Server Error |
Need help? Visit our main site or check the examples above.
Powered by Fastly Compute@Edge • MongoDB • Cloudflare R2