MangaNato Provider

Our most comprehensive manga provider with full browsing, advanced filtering, search, and chapter reading capabilities.

Home

Fetch popular manga, latest updates, and most popular titles from the homepage.

GET /v1/manganato/home?api_key=YOUR_KEY
Response Schema
{
  "success": true,
  "data": {
    "popular_manga": [{
      "id": "string",
      "title": "string",
      "link": "string",
      "image": "string",
      "image_original": "string",
      "chapter": "string",
      "chapter_link": "string"
    }],
    "latest_updates": [{
      "id": "string",
      "title": "string",
      "link": "string",
      "image": "string",
      "image_original": "string",
      "chapter": "string",
      "chapter_link": "string",
      "time_ago": "string"
    }],
    "most_popular": [{
      "id": "string",
      "title": "string",
      "link": "string",
      "chapter": "string"
    }]
  }
}

Genres

Retrieve a complete, alphabetically sorted list of all available genres and their URL slugs for building dynamic frontend filters.

GET /v1/manganato/genres?api_key=YOUR_KEY
Response Schema
{
  "success": true,
  "data": {
    "genres": [{
      "name": "string",
      "slug": "string",
      "url": "string"
    }],
    "special_categories": [
      { "name": "string", "slug": "string", "type": "latest|hot|new" },
      { "name": "string", "slug": "string", "state": "completed" }
    ],
    "total": 42
  }
}

List & Browse

Browse manga with advanced filtering by genre, type, status, and pagination.

GET /v1/manganato/list?api_key=YOUR_KEY&type=latest&genre=action&state=ongoing&page=1
Parameter Type Required
typestringNo
genrestringNo
statestringNo
pagenumberNo
Response Schema
{
  "success": true,
  "data": {
    "page": 1,
    "total_pages": 10,
    "results": [{
      "id": "string",
      "title": "string",
      "link": "string",
      "image": "string",
      "image_original": "string",
      "chapter": "string",
      "chapter_link": "string"
    }]
  }
}

Manga Info

Get detailed metadata, description, genres, and the complete chapter list for a specific manga.

GET /v1/manganato/info?api_key=YOUR_KEY&id=marriagetoxin
Parameter Type Required
idstringYes
Response Schema
{
  "success": true,
  "data": {
    "id": "string",
    "title": "string",
    "image": "string",
    "image_original": "string",
    "author": "string | null",
    "status": "string | null",
    "last_updated": "string | null",
    "views": "string | null",
    "rating": "string | null",
    "genres": ["string"],
    "description": "string | null",
    "chapters": [{
      "name": "string",
      "chapter_num": 0,
      "link": "string",
      "id": "string",
      "updated_at": "string | null",
      "view": "string | null"
    }]
  }
}

Chapter Reader

Fetch all images for a specific chapter. Automatically includes previous and next chapter navigation data for seamless reader UI.

GET /v1/manganato/chapter?api_key=YOUR_KEY&id=marriagetoxin&chapter=chapter-167
Parameter Type Required
idstringYes
chapterstringYes
Response Schema
{
  "success": true,
  "data": {
    "id": "string",
    "chapter": "string",
    "title": "string",
    "images": ["string"],
    "navigation": {
      "prev": {
        "name": "string",
        "slug": "string",
        "link": "string"
      } | null,
      "next": {
        "name": "string",
        "slug": "string",
        "link": "string"
      } | null
    }
  }
}