Docs API Reference Manga Endpoints

Manga Endpoints

API endpoints for listing, searching, and retrieving manga data.

11 views Updated 2 hours ago

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, rating
  • genre — Filter by genre slug
  • status — 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.

Was this article helpful?