Manhwa18 JSON API

Reverse-engineered API wrapper for manhwa18.cc

Endpoints

MethodEndpointDescription
GET/api/search?q=QUERYSearch manga (native JSON endpoint)
GET/api/latest?page=1Homepage manga listing
api/manga/[slug]/api/manga/eternally-regressing-knightManga detail + chapters
GET/api/chapter/[manga]/[chapter]Chapter reader (images)
GET/api/genre/[name]?page=1Manga by genre
GET/api/genresList all available genres

Example

// Search
fetch('/api/search?q=eternally')
  .then(r => r.json())
  .then(data => console.log(data))

// Manga detail
fetch('/api/manga/eternally-regressing-knight')
  .then(r => r.json())
  .then(data => console.log(data))

// Chapter images
fetch('/api/chapter/eternally-regressing-knight/chapter-0')
  .then(r => r.json())
  .then(data => console.log(data))