MangaFox Provider
A reliable provider for mangaFox (fanfox.net) covering home feeds, latest updates, manga info, and chapter reading with image fetching.
Home
Fetch hot manga releases, popular rankings, trending, latest updates, and recommendations from the homepage.
Response Schema
{
"success": true,
"data": {
"hot_manga_releases": [{
"title": "string",
"id": "string",
"link": "string",
"image": "string",
"chapter": "string",
"rating": 0,
"score": 0
}],
"popular_manga_ranking": [{
"rank": 1,
"title": "string",
"id": "string",
"chapter": "string"
}],
"latest_updates": [{
"title": "string",
"id": "string",
"image": "string",
"timeAgo": "string",
"chapters": [{ "name": "string", "link": "string" }],
"genres": ["string"]
}],
"recommended_manga": [ ... ],
"trending_manga": [ ... ],
"new_manga_release": [ ... ]
}
}
Search
Search for manga by title on fanfox.net.
| Parameter | Type | Required |
|---|---|---|
| query | string | Yes |
Response Schema
{
"success": true,
"query": "string",
"data": [{
"title": "string",
"id": "string",
"link": "string",
"image": "string (proxied)",
"image_original": "string",
"subtitle": "string",
"rating": 5,
"score": 9.28,
"genres": ["string"]
}]
}
Manga Info
Retrieve detailed metadata including authors, genres, description, cover image, and a complete chapter list.
| Parameter | Type | Required |
|---|---|---|
| id | string | Yes |
Response Schema
{
"success": true,
"data": {
"id": "string",
"title": "string",
"status": "string",
"description": "string",
"rating": 0,
"score": 0,
"cover_image": "string",
"authors": ["string"],
"genres": [{
"name": "string",
"link": "string"
}],
"chapter_count": 135,
"chapters": [{
"name": "Ch.001",
"link": "/manga/.../c001/1.html",
"date": "string"
}]
}
}
Chapter Reader
Fetch chapter metadata, page list, full chapter navigation, and all comic images extracted from the CDN. Images are served through the built-in proxy.
| Parameter | Type | Required |
|---|---|---|
| id | string | Yes |
| chapter | string | Yes |
Response Schema
{
"success": true,
"data": {
"title": "Vigilante: Boku no Hero Academia Illegals",
"chapter": "Ch.125",
"comic_id": 21619,
"chapter_id": 1110690,
"image_count": 20,
"images": [
"string (proxied)",
...
],
"images_original": [
"https://zjcdn.mangafox.me/...",
...
],
"pages": [{
"page": 1,
"url": "/manga/.../c125/1.html"
}],
"chapters": [{
"name": "Ch.001",
"link": "/manga/.../c001/1.html"
}],
"navigation": {
"prev": "/manga/.../c124/1.html",
"next": "/manga/.../c126/1.html"
}
}
}
Image Proxy
The chapter reader extracts raw CDN image URLs (zjcdn.mangafox.me) and returns them already wrapped in proxy URLs under images. The raw URLs are in images_original. Use the proxy endpoint directly to proxy any CDN image: