Rest API Manhwa Bahasa Indonesia
- Manhwa Terbaru
- Manhwa Populer
- Manhwa Top
- Manhwa Ongoing
- Manhwa Rekomendasi
- Genre Manhwa
- Manhwa By Genre
- Detail Manhwa
- Search Manhwa
- Chapter Manhwa
- Express.js
- Node.js
- Axios
- Cheerio
- Vercel
# Clone repositori
git clone https://github.com/Gungcakra/kurokami-manhwa-api.git
# Masuk ke folder proyek
cd kurokami-manhwa-api
# Install dependensi
npm install
# Jalankan server
npm start
{
"title": "Return of The Greatest Lancer",
"link": "https://komikstation.co/manga/return-of-the-greatest-lancer/",
"imageSrc": "https://i0.wp.com/komikstation.co/wp-content/uploads/2021/09/Return-of-The-Greatest-Lancer-1.jpg?resize=100,130",
"chapters": [
{
"chapterLink": "https://komikstation.co/return-of-the-greatest-lancer-chapter-151/",
"chapterTitle": "Ch.151",
"timeAgo": "3 jam lalu"
},
{
"chapterLink": "https://komikstation.co/return-of-the-greatest-lancer-chapter-150/",
"chapterTitle": "Ch.150",
"timeAgo": "1 minggu lalu"
},
{
"chapterLink": "https://komikstation.co/return-of-the-greatest-lancer-chapter-149/",
"chapterTitle": "Ch.149",
"timeAgo": "2 minggu lalu"
}
]
}
URL Utama API:
https://kurokami.vercel.app/api/$endpoint
Ganti $endpoint
dengan list endpoint ini.
-
GET
/manhwa-new
Get list manhwa terbaru.
Example:
https://kurokami.vercel.app/api/manhwa-new
-
GET
/manhwa-popular
Get list manhwa populer
Example:
https://kurokami.vercel.app/api/manhwa-popular
-
GET
/manhwa-top
Get list manhwa top
Example:
https://kurokami.vercel.app/api/manhwa-top
-
GET
/manhwa-ongoing
Get list manhwa ongoing
Example:
https://kurokami.vercel.app/api/manhwa-ongoing
-
GET
/manhwa-recommendation
Get list manhwa rekomendasi
Example:
https://kurokami.vercel.app/api/manhwa-recommendation
-
GET
/manhwa-detail/:manhwaId
Get detail manhwa sesuai
manhwaId
.Example:
https://kurokami.vercel.app/api/manhwa-detail/nano-machine
-
GET
/chapter/:chapterId
Get detail chapter manhwa sesuai
chapterId
Example:
https://kurokami.vercel.app/api/chapter/nano-machine-chapter-1
-
GET
/genres
Get list genre.
Example:
https://kurokami.vercel.app/api/genres
-
GET
/genre/:genreId
Get list manhwa sesuai genre.
Example:
https://kurokami.vercel.app/api/genre/action
-
GET
/genre/:genreId/page/:pageNumber
Get list manhwa sesuai genre dan page.
Example:
https://kurokami.vercel.app/api/genre/action/page/2
-
GET
/search/:searchId
Get list manhwa sesuai searchQuery.
Example:
https://kurokami.vercel.app/api/search/nano%20machine
-
GET
/search/:searchId/page/:pageNumber
Get list manhwa sesuai searchQuery dan page.
Example:
https://kurokami.vercel.app/api/search/nano%20machine/page/2