Discover/NovelBin API
live

NovelBin APInovelbin.me

Access NovelBin data via API: search novels, fetch chapter content, browse by genre, get comments, and manage bookmarks. 15 endpoints, structured JSON.

Endpoint health
verified 5h ago
get_novels_by_genre
get_novel_details
get_novel_chapters
get_latest_release_novels
get_hot_novels
1/11 passing latest checkself-healing
Endpoints
15
Updated
26d ago

What is the NovelBin API?

The NovelBin API exposes 15 endpoints covering every major surface of novelbin.me — from full-text novel search via search_novels to paginated genre browsing, chapter-by-chapter content retrieval, and reader comment threads. Response objects include fields like genres, rating, status, description, and full chapter content, giving developers structured access to the catalog without screen-parsing.

Try it
Search keyword (e.g. 'shadow slave', 'cultivation')
api.parse.bot/scraper/386a2968-f8d8-4fd3-b5da-8c640e6db70b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/386a2968-f8d8-4fd3-b5da-8c640e6db70b/search_novels?query=shadow+slave' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace novelbin-me-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: NovelBin SDK — search, browse, and read novels."""
from parse_apis.novelbin_api import NovelBin, Genre, NovelNotFound

client = NovelBin()

# Search novels by keyword, capped at 3 results.
for novel in client.novels.search(query="shadow slave", limit=3):
    print(novel.title, novel.author, novel.slug)

# Browse fantasy novels using the Genre enum.
for novel in client.novels.by_genre(genre=Genre.FANTASY, limit=5):
    print(novel.title, novel.author)

# Get full details for a specific novel.
detail = client.novels.get(slug="shadow-slave")
print(detail.title, detail.status, detail.genres)

# Drill into a novel's chapter list and read the first chapter's content.
first_chapter = client.novel("shadow-slave").chapters.list(limit=1).first()
if first_chapter:
    full_chapter = first_chapter.content()
    print(full_chapter.title, full_chapter.content_[:80] if full_chapter.content_ else "")

# Navigate from a summary to full details with typed error handling.
top_hit = client.novels.search(query="cultivation", limit=1).first()
if top_hit:
    try:
        full = top_hit.details()
        print(full.title, full.description[:80] if full.description else "")
    except NovelNotFound as exc:
        print(f"Novel not found: {exc.slug}")

# Discover related novels for an existing novel.
for related in client.novel("shadow-slave").related(limit=3):
    print(related.title, related.slug)

print("exercised: novels.search / novels.by_genre / novels.get / chapters.list / chapter.content / details / related")
All endpoints · 15 totalmissing one? ·

Full-text search over NovelBin's catalog by keyword. Returns matching novels with title, author, cover image, and latest chapter info. Results are not paginated — all matches for the keyword appear in a single response.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'shadow slave', 'cultivation')
Response
{
  "type": "object",
  "fields": {
    "items": "array of novel objects with title, slug, author, image_url, and latest_chapter",
    "query": "the search keyword used"
  },
  "sample": {
    "data": {
      "items": [
        {
          "slug": "shadow-slave",
          "title": "Shadow Slave",
          "author": "Guiltythree",
          "image_url": "https://images.novelbin.me/novel_200_89/shadow-slave.jpg",
          "latest_chapter": {
            "slug": null,
            "title": "Chapter 3034 Forlorn Battlefield"
          }
        }
      ],
      "query": "shadow slave"
    },
    "status": "success"
  }
}

About the NovelBin API

Catalog Discovery

Four listing endpoints — get_latest_release_novels, get_hot_novels, get_most_popular_novels, and get_completed_novels — each return 20 novel objects per page with title, slug, author, and image_url. Pagination is controlled by the page integer parameter. get_genres_list returns the full array of genre name strings, which feed directly into get_novels_by_genre as the required genre parameter. search_novels accepts a free-text query and returns all matches in a single unpaginated response — suitable for autocomplete or discovery features.

Novel and Chapter Detail

get_novel_details accepts a slug and returns a complete novel record: title, author, genres (array), status, description, cover_image_url, and a rating object with score and count. get_novel_chapters returns the full ordered chapter list for a novel — potentially thousands of entries — each with a title and slug. Pass both novel_slug and chapter_slug to get_chapter_content to retrieve the full content text of any individual chapter. get_related_novels returns sidebar-sourced titles and slugs for novels in the same genre.

Comments and User Actions

get_novel_comments supports offset-based pagination via the skip parameter and a sort field accepting 'latest' or 'oldest'. Each comment object includes username, content, time, likes, and dislikes. Three authenticated endpoints — login, add_to_bookmark, and subscribe_to_novel — let you build user-facing features: add_to_bookmark accepts an optional status field (reading, plan_to_read, completed, dropped), and subscribe_to_novel opts a user into update notifications for a given slug.

Reliability & maintenanceVerified

The NovelBin API is a managed, monitored endpoint for novelbin.me — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when novelbin.me changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official novelbin.me API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5h ago
Latest check
1/11 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a cross-platform novel reader app using get_chapter_content to stream full chapter text.
  • Create a recommendation engine seeded by get_related_novels and genre data from get_novel_details.
  • Track reading progress by bookmarking novels with status labels via add_to_bookmark.
  • Aggregate reader sentiment by collecting likes, dislikes, and content fields from get_novel_comments.
  • Populate a novel catalog database with cover images, ratings, and synopses via get_novel_details.
  • Monitor new releases by polling get_latest_release_novels and diffing the slug list over time.
  • Filter a browsing UI by genre using get_genres_list paired with get_novels_by_genre.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 NovelBin have an official developer API?+
NovelBin does not publish an official developer API or documented public endpoints for third-party use.
How does chapter content pagination work — can I fetch a range of chapters?+
get_novel_chapters returns the complete chapter list for a novel in one response, with each entry carrying a title and slug. You then call get_chapter_content individually per chapter using novel_slug and chapter_slug. There is no range or batch parameter for chapter content; each chapter is a separate request.
Does `search_novels` support filtering by genre or status alongside the keyword?+
search_novels accepts only a query string and returns all keyword matches in a single unpaginated list. It does not support filtering by genre, status, or author within the same call. Genre-filtered browsing is available separately through get_novels_by_genre, and status filtering is handled by get_completed_novels. You can fork this API on Parse and revise it to add a combined search-and-filter endpoint.
Does the API expose chapter-level comments or only novel-level comments?+
Currently only novel-level comments are available through get_novel_comments, which returns username, content, time, likes, and dislikes per comment. Chapter-specific comment threads are not covered. You can fork this API on Parse and revise it to add a chapter-comments endpoint.
How fresh is the data from listing endpoints like `get_latest_release_novels`?+
Listing endpoints reflect the current state of NovelBin's public pages at the time of each request. There is no built-in caching TTL exposed in the response, so freshness depends on when you call the endpoint. For real-time tracking, you would need to poll on your own schedule.
Page content last updated . Spec covers 15 endpoints from novelbin.me.
Related APIs in EntertainmentSee all →
jjwxc.net API
Access detailed information about novels from Jinjiang Literature City, including metadata, chapter lists, full chapter content, author profiles, and search capabilities. Discover trending novels through rankings or find specific titles using powerful search features.
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.
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.
barnesandnoble.com API
Search for books and discover detailed information including metadata, pricing, and customer reviews from Barnes & Noble's catalog. Browse bestsellers by category and access comprehensive book details to find your next read or compare prices and ratings.
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.
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
booksrun.com API
Search millions of books and get instant buyback quotes on BooksRun. Browse bestsellers and categories, view detailed book information, and check condition guidelines to understand buyback prices and acceptance criteria.
top.baidu.com API
Access real-time trending search data from Baidu's Top platform. Retrieve ranked hot search terms, novels, movies, and TV dramas, with support for genre and category filtering across all board tabs.