Manga API Endpoints
List Manga
GET /api/v1/manga
Parameters:
page— Page number (default: 1)per_page— Items per page (default: 20, max: 100)sort— Sort by:latest,popular,title,ratinggenre— Filter by genre slugstatus— Filter by status:ongoing,completed
Get Manga Details
GET /api/v1/manga/{slug}
Search Manga
GET /api/v1/manga/search?q=one+piece
Get Chapters
GET /api/v1/manga/{slug}/chapters
Get Chapter Pages
GET /api/v1/manga/{slug}/chapters/{number}
> [!TIP] All list endpoints support pagination via page and per_page parameters. Response includes meta with total counts.