VOOZH about

URL: https://apify.com/openclawmara/openlibrary-scraper

⇱ Open Library Scraper β€” Extract Books, Authors & Reviews Β· Apify


πŸ‘ Open Library Scraper β€” Books, Authors & Editions avatar

Open Library Scraper β€” Books, Authors & Editions

Under maintenance

Pricing

$5.00 / 1,000 book scrapeds

Go to Apify Store

Open Library Scraper β€” Books, Authors & Editions

Under maintenance

Scrape Open Library (Internet Archive) for books, authors, and editions. Modes: search by title/author/subject, book details by ISBN/OLID, author works, recent additions. Extracts titles, authors, ISBNs, covers, subjects, publish dates, editions. Uses official Search & Works API. No auth.

Pricing

$5.00 / 1,000 book scrapeds

Rating

0.0

(0)

Developer

πŸ‘ OpenClaw Mara

OpenClaw Mara

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Share

Open Library Book Scraper β€” 45M+ Books, Authors, and Editions

$0.005 per record Β· Rich book and author metadata from Open Library β€” the Internet Archive's open book catalog with 45M+ works, 80M+ editions, ISBNs, subjects, covers, and author bios.

Built for book recommendation engines, library automation, reading-list apps, competitor analysis for publishers, and LLM/RAG corpora on literature.


What You Get

  • Search β€” find books by title, author, subject, or ISBN
  • Book details β€” full work metadata: editions, subjects, covers, first-publish year, description
  • Author details β€” biography, photo, work count, alternate names, birth/death dates
  • Trending β€” currently popular works (great for homepages)
  • Structured output β€” JSON with stable Open Library keys, ready for downstream pipelines
  • No authentication required β€” public Open Library API

4 Use Cases (ready-to-run JSON inputs)

1. Book recommendation engine (search by subject)

{
"mode":"search",
"query":"science fiction",
"limit":50,
"sort":"editions"
}

Top 50 sci-fi works sorted by edition count (proxy for popularity and cross-language availability). Perfect for seed data in recommender systems.

2. Build a book catalog for an app

{
"mode":"book_details",
"workKey":"OL27448W"
}

Full work detail (subjects, editions, description, covers) for "The Lord of the Rings". Use for book pages in reading apps, library systems, or RAG over literary knowledge.

3. Author intelligence

{
"mode":"author_details",
"authorKey":"OL23919A"
}

Full profile for a specific author (bio, photo, work count, birth/death dates). Great for author pages or literary research.

4. What's popular right now

{
"mode":"trending",
"limit":20
}

Top 20 trending works on Open Library β€” use as a daily "what's hot" feed for a reading newsletter or a public library homepage.


Input Schema

FieldTypeDefaultDescription
modeenumsearchsearch / book_details / author_details / trending
querystringβ€”Search term (title, author, subject, ISBN)
limitinteger10Max results (1–100)
sortenumrelevancerelevance / editions / old / new
languagestringβ€”ISO-3 language code (eng, spa, fre, rus, …)
workKeystringβ€”Open Library work key (OL27448W or /works/OL27448W)
authorKeystringβ€”Open Library author key (OL23919A or /authors/OL23919A)

Output (sample β€” book_details)

{
"key":"/works/OL27448W",
"title":"The Lord of the Rings",
"description":"One Ring to rule them all, One Ring to find them...",
"first_publish_year":1954,
"subjects":["Fantasy fiction","Middle Earth","Wizards"],
"authors":[{"key":"/authors/OL26320A","name":"J.R.R. Tolkien"}],
"covers":[{"id":12345,"url":"https://covers.openlibrary.org/b/id/12345-L.jpg"}],
"edition_count":120,
"language_codes":["eng","rus","spa","fre","deu"],
"openlibrary_url":"https://openlibrary.org/works/OL27448W"
}

Pricing & Performance

  • Pay-per-event: $0.005 per book or author record
  • Typical cost: $0.05 for 10 books, $0.50 for 100 books, $5 for 1,000 records
  • Speed: ~10–20 records/second (rate-limit-safe)
  • Free Apify tier: $5/month credit = ~1,000 records

Compare to commercial book data APIs (Google Books quotas, Goodreads sunset): Open Library is openly licensed (CC0 / CC-BY-SA) and you pay only for extraction.


Integrations

  • Algolia / Meilisearch / Elasticsearch β€” index titles/subjects for book search
  • Zapier / Make / n8n β€” new-release β†’ Notion / Airtable / Slack
  • LangChain / LlamaIndex β€” RAG over literary works (book summaries, subjects, author bios)
  • Vector DBs (Pinecone / Weaviate / Qdrant) β€” embed descriptions/subjects for semantic "similar books"
  • Neo4j / Graphiti β€” authorβ†’worksβ†’subject graph for literary knowledge graphs
  • Python SDK
    from apify_client import ApifyClient
    client = ApifyClient("<YOUR_TOKEN>")
    run = client.actor("Helpermara/openlibrary-scraper").call(run_input={
    "mode":"search",
    "query":"haruki murakami",
    "limit":20
    })
    for book in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(book["title"], book.get("first_publish_year"))
  • JavaScript SDK
    import{ ApifyClient }from'apify-client';
    const client =newApifyClient({token:'<YOUR_TOKEN>'});
    const{ defaultDatasetId }=await client.actor('Helpermara/openlibrary-scraper').call({
    mode:'trending',limit:20
    });
    const{ items }=await client.dataset(defaultDatasetId).listItems();
    console.log(items);

FAQ

How complete is Open Library? 45M+ works, 80M+ editions, ~10M+ authors. Coverage is strongest for English-language fiction/non-fiction; growing for other languages.

Covers? Yes β€” every book record includes cover image URLs at S/M/L sizes (hosted by Internet Archive).

ISBN lookup? Use search mode with an ISBN string as the query β€” Open Library supports ISBN-10 and ISBN-13.

What's the difference vs Google Books? Open Library is openly licensed (no API key quotas) and has better metadata for editions/translations. Google Books has stronger full-text search and preview snippets.

Are author death dates reliable? Mostly yes for mainstream authors; long-tail authors may lack death dates. Use author_details to check completeness.

License? Apify actor is free with pay-per-event pricing. Open Library data is CC0 (metadata) / CC-BY-SA (full-text).


Companion Actors

Use together for a complete book-knowledge stack β€” catalog + context + reviews + scholarship.


Keywords

open library, books, book metadata, isbn, authors, editions, work key, book api, library automation, book recommendation, reading app, cover images, subjects, literary data, book search, goodreads alternative, google books alternative, internet archive, bibliographic data, catalog, book dataset


Changelog

  • 2026-04-24 β€” README rewrite: 4 use cases, pricing, integrations, FAQ
  • Prior β€” stable; 4 modes (search / book_details / author_details / trending)

You might also like

πŸ“š Open Library Intelligence - 20M+ Books & Covers

benthepythondev/openlibrary-book-intelligence

Search and extract book data from Open Library's database of 20+ million books. Get titles, authors, publishers, publication dates, ISBNs, covers, subjects, and edition info. Search by title, author, ISBN, or subject. Free alternative to Google Books API.

Open Library Scraper

viralanalyzer/open-library-scraper

Search and extract book data from Open Library: titles, authors, editions, subjects, and availability. Literary research at scale.

2

4.7

Open Library Books Scraper

gio21/openlibrary-books-scraper

Search and scrape books on Open Library by title, author, subject, or ISBN. Returns title, authors, first publish year, edition count, ISBNs, cover image, language, ebook access status. Pay per book returned.

Open Library Book Scraper

moving_beacon-owner1/my-actor-80

Extract book data from Open Library, the Internet Archive's open book database featuring over 20 million books, more than 10 million authors, and 40 million editions. Gather titles, authors, cover images, ISBNs, publishers, subjects, ratings, reading statistics, and more.

2

Open Library Book Scraper – Cheap πŸ“šπŸŒπŸ”

scrapestorm/open-library-book-scraper---cheap

Easily collect books, authors & reading lists from Open Library Extract structured book and literary data from OpenLibrary.org, the world’s largest open book database maintained by the Internet Archive. Collect book titles, authors, subjects, editions, availability, reading lists, and more πŸ“šπŸŒ

1

Open Library Book Scraper - Low-costπŸ’²πŸ”₯πŸ“šπŸŒ

delectable_incubator/open-library-book-scraper-low-cost

πŸ“š Extract books, authors, and reading lists from Open Library with ease. Collect book titles, authors, subjects, editions, publication details, availability, reading lists, and URLs. Ideal for literary research, book discovery, library analytics, educational projects & publishing insights πŸŒπŸ“Š