A fun project for scraping manga images and details from Manytoon.
- Fixed an issue where the
/api/image
endpoint returned an "Invalid image URL" error when processing certain image URLs. This was due to incorrect URL validation, which has now been corrected to properly handle valid URLs from Manytoon.
Fetches a list of image URLs for a specific manhwa chapter.
Example URL:
http://localhost:3000/api/images/your-creepy-bucketlist/chapter-1
Response Example:
{
"imageUrls": [
"https://manytoon.com/wp-content/uploads/WP-manga/data/manga_6645adb9a383d/0b8ec3888b807c293372246a6b9e670a/001.jpg",
"https://manytoon.com/wp-content/uploads/WP-manga/data/manga_6645adb9a383d/0b8ec3888b807c293372246a6b9e670a/002.jpg",
"https://manytoon.com/wp-content/uploads/WP-manga/data/manga_6645adb9a383d/0b8ec3888b807c293372246a6b9e670a/003.jpg",
// More URLs...
],
"processedImageUrls": [
"http://localhost:3000/api/image?url=https%3A%2F%2Fmanytoon.com%2Fwp-content%2Fuploads%2FWP-manga%2Fdata%2Fmanga_6645adb9a383d%2F0b8ec3888b807c293372246a6b9e670a%2F001.jpg",
"http://localhost:3000/api/image?url=https%3A%2F%2Fmanytoon.com%2Fwp-content%2Fuploads%2FWP-manga%2Fdata%2Fmanga_6645adb9a383d%2F0b8ec3888b807c293372246a6b9e670a%2F002.jpg",
"http://localhost:3000/api/image?url=https%3A%2F%2Fmanytoon.com%2Fwp-content%2Fuploads%2FWP-manga%2Fdata%2Fmanga_6645adb9a383d%2F0b8ec3888b807c293372246a6b9e670a%2F003.jpg",
// More URLs...
]
}
Proxies and serves images from Manytoon.
Example URL:
http://localhost:3000/api/image?url=https://manytoon.com/wp-content/uploads/WP-manga/data/manga_6645adb9a383d/0b8ec3888b807c293372246a6b9e670a/024.jpg
When you enter the URL, the image will be displayed directly.
Fetches details about a specific manhwa, including title, rating, genre, release year, and status.
Example URL:
http://localhost:3000/api/secret-hot-spring-inn/details
Response Example:
{
"title": "Secret Hot Spring Inn",
"rating": "5",
"ratingCount": "3",
"genres": [
"Drama",
"Manhwa",
"Romance"
],
"status": "OnGoing",
"releaseYear": "2024",
"imageUrl": "https://manytoon.org/wp-content/uploads/2024/09/Secret-Hot-Spring-Inn-193x278-1.jpg"
}