RESTful API for manga and comic metadata. Search across multiple sources, retrieve chapter listings, and monitor source health.
/api/sourcesRetrieve list of available sources
{
"sources": [
{
"id": "mangapark",
"name": "MangaPark",
"baseUrl": "https://mangapark.io",
"description": "MangaPark - https://mangapark.io"
}
]
}/api/searchSearch for manga across one or all sources
{
"query": "solo leveling",
"source": "mangapark" // or "all" for all sources
}{
"results": [
{
"id": "343921",
"title": "Solo Leveling",
"url": "https://mangapark.io/title/75577-en-solo-leveling",
"coverImage": "https://...",
"latestChapter": 179,
"lastUpdated": "2 days ago"
}
],
"source": "MangaPark"
}/api/chaptersGet chapter list for a manga
{
"url": "https://mangapark.io/title/75577-en-solo-leveling",
"source": "mangapark" // optional
}{
"chapters": [
{
"id": "1",
"number": 1,
"title": "Chapter 1",
"url": "https://..."
}
],
"source": "MangaPark",
"totalChapters": 179
}/api/healthCheck health status of all sources (cached for 5 minutes)
{
"sources": {
"mangapark": {
"status": "healthy",
"message": "Source is operational",
"responseTime": 1234,
"lastChecked": "2025-01-08T..."
}
}
}