Discover/mangafire.to API
live

mangafire.to APImangafire.to

Access MangaFire.to manga listings, series details, and today's updates via API. Filter by genre, type, status, and sort order across paginated results.

Endpoints
3
Updated
4mo ago
Try it
Page number to retrieve.
Sort order. Accepted values: recently_updated, recently_added, release_date, name_az, score_avg, score_mal, trending, today, weekly, monthly, total, favourite.
Filter by manga type. Accepted values: manga, manhwa, manhua, one-shot, doujinshi, novel.
Filter by genre. Accepted values include: action, adventure, comedy, fantasy, shounen, romance, drama, sci-fi, horror, mystery, slice-of-life.
Filter by publication status. Accepted values: releasing, completed, on-hiatus, discontinued, not-yet-published.
api.parse.bot/scraper/e6da1dd7-d423-48fd-a59e-b07eac1c432e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e6da1dd7-d423-48fd-a59e-b07eac1c432e/get_manga_list?page=1&sort=weekly&genre=action' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Get a paginated list of manga with various filters and sorting options. Returns manga titles with poster images, type, and latest chapter information.

Input
ParamTypeDescription
pageintegerPage number to retrieve.
sortstringSort order. Accepted values: recently_updated, recently_added, release_date, name_az, score_avg, score_mal, trending, today, weekly, monthly, total, favourite.
typestringFilter by manga type. Accepted values: manga, manhwa, manhua, one-shot, doujinshi, novel.
genrestringFilter by genre. Accepted values include: action, adventure, comedy, fantasy, shounen, romance, drama, sci-fi, horror, mystery, slice-of-life.
statusstringFilter by publication status. Accepted values: releasing, completed, on-hiatus, discontinued, not-yet-published.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "items": "array of manga objects, each containing title, slug, type, poster, and latest_chapters",
    "has_next": "boolean, whether more pages are available"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "slug": "one-piecee.dkw",
          "type": "Manga",
          "title": "One Piece",
          "poster": "https://static.mfcdn.nl/a96c/i/8/22/bcfcc8f19ec17a2929fa55d8945ea18b.jpg",
          "latest_chapters": [
            {
              "url": "https://mangafire.to/read/one-piecee.dkw/fr/chapter-1182",
              "lang": "FR",
              "time": "May 10, 2026",
              "title": "Chap 1182 FR"
            }
          ]
        }
      ],
      "has_next": true
    },
    "status": "success"
  }
}

About the mangafire.to API

The MangaFire API gives developers access to 3 endpoints covering manga listings, series details, and real-time daily updates from MangaFire.to. The get_manga_list endpoint supports filtering by genre, type, status, and six sort options, returning title, slug, poster URL, and latest chapter data per item. Combined with get_manga_details and get_todays_updates, the API covers discovery, metadata retrieval, and freshness tracking in a single integration.

Browsing and Filtering Manga

The get_manga_list endpoint returns paginated manga items, each containing a title, slug, type, poster image URL, and latest_chapters array. You can narrow results by type (manga, manhwa, manhua, one-shot, doujinshi, novel), status (releasing, completed, on-hiatus, discontinued, not-yet-published), and genre (action, romance, fantasy, sci-fi, and many others). The sort parameter accepts values like recently_updated, score_avg, score_mal, name_az, and release_date. A has_next boolean in the response tells you whether additional pages exist for the current query.

Series Details

The get_manga_details endpoint takes a slug obtained from list results and returns a full metadata object: title, alt_title (semicolon-separated alternatives or null), description, genres array, poster URL, and a metadata object that includes author, published date range, genres, and magazines. This is the main endpoint for building series pages or enriching a local database with canonical MangaFire metadata.

Today's Updates

The get_todays_updates endpoint surfaces manga that received uploads or edits within the last several hours. Each item in the items array includes title, slug, and a human-readable time string (e.g., '2 hours ago'). The endpoint is paginated via the page parameter. Because the time field is a relative string rather than an absolute timestamp, consumers who need precise update times should record the response time at the point of request.

Common use cases
  • Build a manga discovery feed filtered by genre and sorted by average score using get_manga_list.
  • Populate a series detail page with author, publication dates, and synopsis from get_manga_details.
  • Track daily release activity by polling get_todays_updates and recording which slugs appear.
  • Sync a local manga catalog by paginating get_manga_list with the recently_updated sort.
  • Display cover art grids for a specific manga type such as manhwa or manhua using the type filter.
  • Alert users to new chapters for followed titles by matching get_todays_updates slugs against a watchlist.
  • Compare community scores by retrieving score_avg and score_mal sort orderings for the same genre.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does MangaFire.to have an official developer API?+
MangaFire.to does not publish an official public developer API or documented data access program.
What does `get_manga_details` return and how is it different from `get_manga_list`?+
get_manga_list returns lightweight cards — title, slug, type, poster, and latest chapters — suited for browsing. get_manga_details returns a full record for one title: description, alt_title, genres array, metadata (author, published date range, magazines), and the poster URL. You supply the slug from a list result as the required input.
Is the `time` field in `get_todays_updates` an absolute timestamp?+
No. The time field is a relative string like '1 hour ago' or '3 hours ago'. There is no ISO 8601 or Unix timestamp in the response. If your application requires exact update times, record the wall-clock time of the API call alongside the relative value.
Does the API return chapter content, page images, or reading URLs?+
Not currently. The API covers series listings, series-level metadata, and update recency. Chapter content, individual page images, and reader URLs are not exposed. You can fork this API on Parse and revise it to add a chapter-content endpoint.
Can I search manga by title keyword rather than browsing by filter?+
Not currently. get_manga_list supports filtering by type, genre, status, and sort, but there is no free-text keyword search parameter. You can fork this API on Parse and revise it to add a title-search endpoint.
Page content last updated . Spec covers 3 endpoints from mangafire.to.
Related APIs in EntertainmentSee all →
mangalib.org API
Browse and search a comprehensive manga catalog, read chapters and pages, view manga details and cover images, and discover personalized recommendations. Access comments, track your currently reading list, and find random titles to explore.
mangaupdates.com API
Track manga releases by day, look up detailed series information and genres, and monitor site statistics — all from MangaUpdates. Access release schedules, series metadata, and platform insights to stay updated on the latest manga.
webtoons.com API
Search and discover Webtoon series by title or genre, view episode details and images, check rankings and trending content, and learn about authors and their works. Access comprehensive information about original and canvas series to find your next favorite read.
omegascans.org API
Browse and search thousands of comics and novels, view chapters and series details, and stay updated with the latest announcements and releases from Omega Scans. Discover new content through the homepage, search specific series, and access chapter-by-chapter reading with real-time updates on what's newly published.
aniwatchtv.to API
Extract all
anime.com API
Browse anime news, discover shows with detailed information and episode lists, and participate in community polls and discussions all from one unified service. Search across anime.com's comprehensive database to find exactly what you're looking for.
magzter.com API
Browse and search millions of magazines, newspapers, and stories from Magzter's digital library, then dive into specific publications, issues, and articles by category. Discover detailed information about any magazine or newspaper edition to find exactly what you want to read.
mydramalist.com API
Search and discover Asian dramas from MyDramaList, including Korean, Japanese, Chinese, Taiwanese, Thai, and Hong Kong shows. Retrieve comprehensive details such as cast, ratings, synopses, genres, airing schedules, and episode information across thousands of titles.