Discover/Noor Book API
live

Noor Book APInoor-book.com

Search 289,000+ authors and 1,800+ categories on Noor Book. Get book metadata, author profiles, and category listings via 5 structured endpoints.

Endpoint health
verified 3d ago
get_categories
get_book_details
search_authors
get_author_info
search_books
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Noor Book API?

The Noor Book API provides 5 endpoints for searching and retrieving structured data from noor-book.com, one of the largest Arabic and English digital libraries. Use search_books to query the full catalog and get back title, author, rating, and cover image for up to 36 results per query, or call get_book_details to pull metadata for a specific title including publisher, page count, language, and category.

Try it
Search keyword or phrase (e.g. 'python programming', 'shakespeare').
api.parse.bot/scraper/56a9e599-c7f6-4e4c-8239-180f124bcde5/<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/56a9e599-c7f6-4e4c-8239-180f124bcde5/search_books?query=python' \
  -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 noor-book-com-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.

from parse_apis.noor_book_library_api import NoorBook, BookSummary, Author, ResourceNotFound

client = NoorBook()

# Search for books about Python
for book in client.books.search(query="python", limit=5):
    print(book.title, book.author, book.rating)

# Get full details for one book
details = client.books.get(book_id="423559")
print(details.title, details.author, details.category, details.pages, details.language)

# Search for authors
for author_summary in client.authors.search(query="Shakespeare", limit=3):
    print(author_summary.name, author_summary.books_count)
    # Drill into full author profile
    full_author = author_summary.details()
    print(full_author.name, full_author.biography, full_author.books_count)

# Get author directly by slug
shakespeare = client.authors.get(author_slug="Shksbyr")
print(shakespeare.name, shakespeare.author_url)

# Browse categories
for cat in client.categories.list(limit=10):
    print(cat.name, cat.category_url)
All endpoints · 5 totalmissing one? ·

Full-text search over the Noor Book catalog by keyword. Returns up to ~36 matching results per query with title, author, rating, and cover image. No server-side pagination exposed; results are a single page.

Input
ParamTypeDescription
queryrequiredstringSearch keyword or phrase (e.g. 'python programming', 'shakespeare').
Response
{
  "type": "object",
  "fields": {
    "books": "array of book result objects with title, author, book_id, rating, cover_image",
    "query": "string — the search query echoed back",
    "results_count": "integer — number of books returned"
  },
  "sample": {
    "data": {
      "books": [
        {
          "title": "Python",
          "author": "علا عباس و عبداللطيف",
          "rating": null,
          "book_id": "1055781",
          "book_url": "https://www.noor-book.com/en/book/review/1055781",
          "author_url": "https://www.noor-book.com/en/ebooks-علا-عباس-و-عبداللطيف-pdf",
          "cover_image": "https://www.noor-book.com/publice/covers_cache_jpg/2/e/b/0/13400bc4b8eb03ac2dd2b8f8359fc886.jpg.jpg",
          "rating_count": null
        }
      ],
      "query": "python",
      "results_count": 35
    },
    "status": "success"
  }
}

About the Noor Book API

Catalog Search and Book Metadata

The search_books endpoint accepts a keyword or phrase and returns up to ~36 book objects per query, each containing title, author, book_id, rating, and cover_image. There is no server-side pagination exposed — results represent a single page. The book_id values returned here feed directly into get_book_details, which retrieves a full metadata record for a single title: pages, publisher, language, category, release_date, rank, rating, and the canonical book_url.

Author Profiles and Search

The search_authors endpoint searches by author name and returns up to ~30 author entries per response, including author_slug, books_count, and rating_count. The total_results field indicates the total number of matching authors the library reports, even if only a subset is returned. Once you have an author_slug (also available from search_books author URLs), pass it to get_author_info to retrieve the author's biography, full name, author_url, and a list of their books with IDs and cover images.

Category Browsing

The get_categories endpoint requires no input and returns the full list of all available categories in a single response — over 1,800 entries, each with a name and category_url. This is useful for building browse interfaces or validating which categories exist in the Noor Book library before filtering results manually. Note that filtering books by category is not directly exposed as a query parameter; categories serve as reference data.

Reliability & maintenanceVerified

The Noor Book API is a managed, monitored endpoint for noor-book.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when noor-book.com 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 noor-book.com 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
3d ago
Latest check
5/5 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 an Arabic-language book discovery app using search_books results including titles, ratings, and cover images.
  • Populate an author directory with biography text and book lists pulled from get_author_info.
  • Aggregate book metadata (publisher, page count, language) across a reading list using get_book_details with known book IDs.
  • Index the full category taxonomy from get_categories to build a genre-based navigation tree.
  • Compare rating values across books by the same author by combining get_author_info book lists with get_book_details calls.
  • Resolve author slugs from search_authors results to fetch biography data for a people-search feature.
  • Track which categories a set of books belong to by cross-referencing get_book_details category fields against the get_categories list.
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 Noor Book have an official developer API?+
Noor Book does not publish an official public developer API or documented REST interface. This Parse API is the structured way to access its catalog data programmatically.
What does `get_book_details` return beyond what `search_books` includes?+
search_books returns a lightweight record: title, author, book_id, rating, and cover_image. get_book_details adds publisher, language, pages, category, rank, book_url, and structured rating data — fields not present in search results. You need the book_id from a prior search or author lookup to call it.
Can I paginate through search results beyond the first page?+
search_books and search_authors each return a single page of results — up to ~36 books or ~30 authors respectively. No pagination parameter is exposed. The total_results field in search_authors shows how many total matches exist, but only the first page is retrievable via the current API. You can fork this API on Parse and revise it to add paginated search support.
Can I filter books by category directly in a query?+
Not currently. The API exposes get_categories for listing all categories with their URLs, and get_book_details returns the category a book belongs to, but there is no endpoint that accepts a category as a filter to return matching books. You can fork this API on Parse and revise it to add a category-filtered book listing endpoint.
Are download links or full book content available through this API?+
No download links or book content are included in any response. The API covers metadata fields: titles, descriptions, ratings, publisher info, page counts, author biographies, and category names. book_url points to the canonical page on noor-book.com. You can fork this API on Parse and revise it to surface additional fields that appear on individual book pages.
Page content last updated . Spec covers 5 endpoints from noor-book.com.
Related APIs in EducationSee all →
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.
shamela.ws API
Search and browse one of the largest collections of Arabic and Islamic books, exploring thousands of titles by category, author, or full-text content. Access detailed book information, read specific pages, and discover newly added works to build your digital Islamic library.
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.
bookshop.org API
Search for books by keyword or category, view detailed information like metadata and pricing, discover curated reading lists, and find independent bookstores near you on Bookshop.org. Filter results by format and browse new releases to discover your next read.
alibris.com API
Search for books and retrieve seller listings from Alibris. Access detailed book information including title, author, condition, pricing, and seller data across the platform.
rokomari.com API
Search for books and explore detailed information about titles, authors, and awards from Rokomari's catalog. Browse bestsellers, categories, quick deals, and discover author profiles all in one place.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
valorebooks.com API
Search for books and instantly compare prices across ValoreBooks' inventory while getting real-time buyback quotes for books you want to sell. Access detailed book information including pricing and resale values to find the best deals on textbooks and used books.