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.

GET /v1/mangafox/home?api_key=YOUR_KEY
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": [ ... ]
  }
}

Manga Info

Retrieve detailed metadata including authors, genres, description, cover image, and a complete chapter list.

GET /v1/mangafox/info?api_key=YOUR_KEY&id=vigilante_boku_no_hero_academia_illegals
Parameter Type Required
idstringYes
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.

GET /v1/mangafox/chapter?api_key=YOUR_KEY&id=vigilante_boku_no_hero_academia_illegals&chapter=c125
Parameter Type Required
idstringYes
chapterstringYes
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:

GET /v1/mangafox/image-proxy?url=https://zjcdn.mangafox.me/store/manga/...