Discover/FreeBookCentre API
live

FreeBookCentre APIfreebookcentre.net

Access FreeBookCentre.net's catalog of free technical books via API. Browse categories, list books by subject, search by keyword, and retrieve full book details.

This API takes change requests — .
Endpoint health
verified 5d ago
list_books
search_books
list_categories
get_book_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
29d ago

What is the FreeBookCentre API?

The FreeBookCentre.net API provides 4 endpoints for querying the site's catalog of free online technical books. Use list_categories to retrieve all top-level subject categories with their paths, list_books to pull book titles, authors, descriptions, and page counts from any category or subcategory, get_book_details for full per-book metadata including breadcrumb hierarchy, and search_books to match keywords against category names and book titles.

Try it

No input parameters required.

api.parse.bot/scraper/f0f71435-0337-4c81-bc20-75a6f6d8c58b/<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/f0f71435-0337-4c81-bc20-75a6f6d8c58b/list_categories' \
  -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 freebookcentre-net-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.freebookcentre_net_api import FreeBookCentre, Category, BookSummary, Book

client = FreeBookCentre()

# Search for categories matching a keyword
for category in client.categories.search(query="python"):
    print(category.name, category.path)

# Navigate into a specific category to browse its books
cs_category = client.category("/CompuScience/compscCategory.html")
for book_summary in cs_category.books.list():
    print(book_summary.title, book_summary.author)

# Get full details for a book
book = book_summary.details()
print(book.title, book.author, book.pages, book.url)
All endpoints · 4 totalmissing one? ·

List all main book categories available on the site. Returns category names and their URL paths for use with the list_books endpoint. Each category path can be passed to list_books to retrieve its book listings and subcategories.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of categories",
    "categories": "array of category objects with name and path"
  },
  "sample": {
    "data": {
      "total": 30,
      "categories": [
        {
          "name": "Computer Science",
          "path": "/CompuScience/compscCategory.html"
        },
        {
          "name": "Languages",
          "path": "/Language/langCategory.html"
        },
        {
          "name": "Mathematics",
          "path": "/SpecialCat/Free-Mathematics-Books-Download.html"
        }
      ]
    },
    "status": "success"
  }
}

About the FreeBookCentre API

Browsing Categories and Books

The list_categories endpoint returns a flat list of all main subject categories available on FreeBookCentre.net, each with a name and a path. Those paths feed directly into list_books, which accepts a category_path parameter and returns an array of book objects — each containing title, author, description, pages, and a detail_path. Where a category page contains subcategories rather than direct book listings, the response includes a subcategories array alongside books, letting you traverse the hierarchy by feeding subcategory paths back into list_books.

Retrieving Book Details

get_book_details takes a book_path (typically obtained from the detail_path field in a list_books response) and returns the full record for a single book: title, author, description, pages, url, and a breadcrumb array that reflects the category chain the book sits under. The pages field is returned as a string or null when the count is not listed by the source.

Searching the Catalog

search_books accepts a query string and returns two result sets: matching_categories (category name and path pairs whose names contain the keyword) and matching_books (book title, author, and detail_path for matching titles). The search covers homepage-level content, so it is best suited for broad keyword discovery rather than exhaustive full-catalog queries. For deeper browsing after a category match, pass the returned path into list_books.

Reliability & maintenanceVerified

The FreeBookCentre API is a managed, monitored endpoint for freebookcentre.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when freebookcentre.net 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 freebookcentre.net 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
5d ago
Latest check
4/4 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 curated reading list tool that maps list_categories output to subject areas for a learning platform
  • Aggregate free CS and programming book metadata (title, author, pages) for a developer resource directory
  • Drive keyword-based book discovery by querying search_books with technology names like 'python' or 'algorithms'
  • Populate a study guide app with structured category hierarchies by traversing subcategories from list_books
  • Extract breadcrumb paths via get_book_details to classify books by subject hierarchy in a knowledge graph
  • Monitor new additions to specific technical categories by periodically polling list_books on target category paths
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 FreeBookCentre.net have an official developer API?+
No. FreeBookCentre.net does not publish an official developer API or documented data feed. This Parse API is the structured way to access the catalog programmatically.
What does `list_books` return when a category has subcategories instead of direct book listings?+
In that case, the books array may be empty or sparse and the response will include a subcategories array with name and path for each subcategory. You pass those paths back into list_books to retrieve the actual book listings one level deeper.
Does `search_books` search the full catalog or only part of it?+
It searches homepage-level content, matching the query string against category names and book titles visible there. It does not perform a full index scan across every book in every subcategory. For complete coverage of a subject, use the matching category paths from matching_categories and paginate through list_books.
Can I retrieve download links or direct URLs to the book files?+
Not currently. The API returns book metadata — title, author, description, page count, breadcrumb, and the FreeBookCentre.net page URL — but does not expose download links or external hosting URLs for the actual book files. You can fork this API on Parse and revise it to add an endpoint that extracts those links from the book detail page.
Is pagination supported when listing books in a large category?+
The list_books endpoint does not currently expose a page number or offset parameter; it returns what the source category page presents in a single response. Categories with very large listings may reflect only a portion of available titles. You can fork this API on Parse and revise it to add pagination support for categories that span multiple pages.
Page content last updated . Spec covers 4 endpoints from freebookcentre.net.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
zenodo.org API
Search and retrieve research records, files, versions, and community data from Zenodo's open science repository. Access detailed information about academic publications, datasets, and research outputs, including file listings, version history, and community collections all in one place.
openalex.org API
Search and retrieve millions of academic papers, articles, and books from OpenAlex's comprehensive global research catalog to find scholarly works by topic, author, or citation. Discover detailed information about research publications including metadata, abstracts, and citation counts to stay current with academic literature in your field.
ieeexplore.ieee.org API
Search for scientific papers and retrieve their metadata, abstracts, references, and citations from IEEE Xplore's collection of journals and conferences. Look up author profiles, browse journals, and access paper details and full text sections all programmatically.
dictionary.cambridge.org API
Look up word definitions, pronunciations, translations, synonyms, and example sentences from Cambridge Dictionary. Search and browse thousands of words, get daily word recommendations, and access specialized business or American English dictionaries.
niche.com API
Search and retrieve data on K-12 schools and colleges from Niche.com, including rankings, report card grades, stats, and user reviews.
wellcomecollection.org API
Access data from wellcomecollection.org.
libgen.gl API
Search for books and retrieve detailed metadata including file information, edition details, and bibliographic data from Library Genesis. Access comprehensive book information like download links, file formats, and publication details all in one place.