{"openapi":"3.1.0","info":{"title":"ForgeMesh Library","version":"0.1.0","description":"A paid public-domain knowledge base for AI agents, built over 61015 public-domain books. Education-safe: no license terms, no API key, no account required — every text served is public domain in the USA. Built for educational software, tutoring agents, reading apps, and quiz/curriculum generators. All retrieval — full-text search over real passages with book/author citations, never LLM-generated or summarized.","contact":{"email":"clawdbotworker@gmail.com"},"x-guidance":"Start free at GET / or /llms.txt for the full route list. Category shelf routes (e.g. /classic-literature, /philosophy) return curated book lists for browsing. /book-search finds books by title/author. /book-metadata and /book-chapter retrieve a specific book by book_id. /literature-search is the premium cross-corpus full-text search — pass a query, get back cited passages from any indexed book. The /ask-<book> routes are single-book retrieval Q&A: pass a question, get back the most relevant passages from that specific book. All endpoints are POST with a JSON body; the first call without payment returns HTTP 402 with an x402 v2 challenge including a worked example. Pay USDC on Base and retry with the X-PAYMENT header. Corpus indexing is ongoing — responses report a `coverage` field showing how much of the target corpus is indexed so far."},"servers":[{"url":"https://library.forgemesh.io"}],"components":{"schemas":{"ShelvesResponse":{"type":"object","properties":{"shelf":{"type":"string"},"count":{"type":"number"},"coverage":{"type":"object","additionalProperties":true},"books":{"type":"array","items":{"type":"object","additionalProperties":true}},"drill_down":{"type":"array","items":{"type":"string"}}},"additionalProperties":true},"AskResponse":{"type":"object","properties":{"book_id":{"type":"number"},"title":{"type":"string"},"author":{"type":"string"},"question":{"type":"string"},"count":{"type":"number"},"method":{"type":"string"},"passages":{"type":"array","items":{"type":"object","additionalProperties":true}}},"additionalProperties":true},"BookChapterResponse":{"type":"object","properties":{"book_id":{"type":"number"},"title":{"type":"string"},"author":{"type":"string"},"chapter":{"type":"number"},"chapter_detection":{"type":"string"},"chunk_count":{"type":"number"},"text":{"type":"string"}},"additionalProperties":true},"BookMetadataResponse":{"type":"object","properties":{"book_id":{"type":"number"},"title":{"type":"string"},"author":{"type":"string"},"year":{"type":"string"},"download_count":{"type":"number"},"subjects":{"type":"array","items":{"type":"string"}},"bookshelves":{"type":"array","items":{"type":"string"}},"chunk_count":{"type":"number"},"chapter_detection":{"type":"string"},"chapters_available":{"type":"number"},"chapter_range":{"type":"array","items":{"type":"number"}}},"additionalProperties":true},"BookOfTheDayResponse":{"type":"object","properties":{"date":{"type":"string"},"book_id":{"type":"number"},"title":{"type":"string"},"author":{"type":"string"},"year":{"type":"string"},"pool_size":{"type":"number"},"drill_down":{"type":"array","items":{"type":"string"}}},"additionalProperties":true},"BookQuotesResponse":{"type":"object","properties":{"book_id":{"type":"number"},"title":{"type":"string"},"author":{"type":"string"},"theme":{"type":"string"},"count":{"type":"number"},"method":{"type":"string"},"passages":{"type":"array","items":{"type":"object","additionalProperties":true}}},"additionalProperties":true},"BookSearchResponse":{"type":"object","properties":{"query":{"type":"string"},"count":{"type":"number"},"coverage":{"type":"object","additionalProperties":true},"books":{"type":"array","items":{"type":"object","additionalProperties":true}}},"additionalProperties":true},"LibraryCardResponse":{"type":"object","properties":{"patron_number":{"type":"string"},"token_id":{"type":"string"},"holder":{"type":"string"},"already_held":{"type":"boolean"},"contract":{"type":"string"},"network":{"type":"string"},"explorer":{"type":"string"},"tokenURI_note":{"type":"string"},"message":{"type":"string"}},"additionalProperties":true},"LiteratureSearchResponse":{"type":"object","properties":{"query":{"type":"string"},"count":{"type":"number"},"coverage":{"type":"object","additionalProperties":true},"results":{"type":"array","items":{"type":"object","additionalProperties":true}}},"additionalProperties":true},"RootManifestResponse":{"type":"object","properties":{"name":{"type":"string"},"title":{"type":"string"},"version":{"type":"number"},"pay_to":{"type":"string"},"network":{"type":"string"},"facilitator":{"type":"string"},"endpoint_count":{"type":"number"},"book_count":{},"openapi":{"type":"string"},"llms":{"type":"string"},"contact":{"type":"string"},"endpoints":{"type":"array","items":{"type":"object","additionalProperties":true}},"related_services":{"type":"array","items":{"type":"object","additionalProperties":true}}},"additionalProperties":true}}},"paths":{"/":{"get":{"operationId":"root_manifest","summary":"Service manifest — endpoint list, pricing, and discovery doc links","security":[],"responses":{"200":{"description":"Manifest JSON (or HTML if Accept: text/html)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RootManifestResponse"}}}}}}},"/adventure":{"post":{"operationId":"adventure","summary":"Curated shelf of public-domain adventure fiction, ranked by historical popularity. Returns title, author, year, book_id,","description":"Curated shelf of public-domain adventure fiction, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Adventure","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":74,"title":"The Adventures of Tom Sawyer, Complete","author":"Twain, Mark, 1835-1910","year":"2004","download_count":14288,"subjects":["Adventure stories"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ask-alice-in-wonderland":{"post":{"operationId":"ask_alice_in_wonderland","summary":"Ask a question about Alice's Adventures in Wonderland for a tutoring agent, quiz generator, or reading app — get back th","description":"Ask a question about Alice's Adventures in Wonderland for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does the Cheshire Cat say about madness?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does the Cheshire Cat say"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis, 1832-1898","question":"what does the Cheshire Cat say","count":4,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":6,"location":"chapter 6, passage #110","text":"…\"We're all mad here. I'm mad. You're mad.\"…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-art-of-war":{"post":{"operationId":"ask_art_of_war","summary":"Ask a question about The Art of War for a tutoring agent, quiz generator, or reading app — get back the most relevant pa","description":"Ask a question about The Art of War for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the text itself, with chapter and location citations. Retrieval only, full-text search over the real text, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does it say about deception?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does it say about deception"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":132,"title":"The Art of War","author":"Sunzi, active 6th century B.C.","question":"what does it say about deception","count":2,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":1,"location":"chapter 1, passage #12","text":"…All warfare is based on [deception]…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-count-of-monte-cristo":{"post":{"operationId":"ask_count_of_monte_cristo","summary":"Ask a question about The Count of Monte Cristo for a tutoring agent, quiz generator, or reading app — get back the most ","description":"Ask a question about The Count of Monte Cristo for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"how does Dantes escape prison?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"how does Dantes escape prison"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1184,"title":"The Count of Monte Cristo","author":"Dumas, Alexandre","question":"how does Dantes escape prison","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":20,"location":"chapter 20, passage #150","text":"…Dantès, thanks to the practice he had undergone, had become as strong and supple as an athlete…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-crime-and-punishment":{"post":{"operationId":"ask_crime_and_punishment","summary":"Ask a question about Crime and Punishment for a tutoring agent, quiz generator, or reading app — get back the most relev","description":"Ask a question about Crime and Punishment for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"why does Raskolnikov commit the murder?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"why does Raskolnikov commit the murder"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":2554,"title":"Crime and Punishment","author":"Dostoyevsky, Fyodor","question":"why does Raskolnikov commit the murder","count":4,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":1,"location":"chapter 1, passage #22","text":"…\"I want to attempt a thing like that and am frightened by these trifles,\" he thought…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-don-quixote":{"post":{"operationId":"ask_don_quixote","summary":"Ask a question about Don Quixote for a tutoring agent, quiz generator, or reading app — get back the most relevant passa","description":"Ask a question about Don Quixote for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"why does Don Quixote attack the windmills?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"why does Don Quixote attack the windmills"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":996,"title":"Don Quixote","author":"Cervantes Saavedra, Miguel de","question":"why does Don Quixote attack the windmills","count":2,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":8,"location":"chapter 8, passage #14","text":"…\"Fortune is arranging matters for us better than we could have shaped our desires ourselves…\""}]}}}},"402":{"description":"Payment Required"}}}},"/ask-dracula":{"post":{"operationId":"ask_dracula","summary":"Ask a question about Dracula for a tutoring agent, quiz generator, or reading app — get back the most relevant passages ","description":"Ask a question about Dracula for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Van Helsing know about vampires?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Van Helsing know about vampires"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":345,"title":"Dracula","author":"Stoker, Bram, 1847-1912","question":"what does Van Helsing know about vampires","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":14,"location":"chapter 14, passage #250","text":"…The nosferatu do not die like the bee when he sting once…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-frankenstein":{"post":{"operationId":"ask_frankenstein","summary":"Ask a question about Frankenstein for a tutoring agent, quiz generator, or reading app — get back the most relevant pass","description":"Ask a question about Frankenstein for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"how does the creature learn to speak?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"how does the creature learn to speak"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft, 1797-1851","question":"how does the creature learn to speak","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":12,"location":"chapter 12, passage #210","text":"…I found that these people possessed a method of communicating their experience and feelings to one another by articulate sounds…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-great-expectations":{"post":{"operationId":"ask_great_expectations","summary":"Ask a question about Great Expectations for a tutoring agent, quiz generator, or reading app — get back the most relevan","description":"Ask a question about Great Expectations for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"who is Pip's secret benefactor?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"who is Pip's secret benefactor"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1400,"title":"Great Expectations","author":"Dickens, Charles","question":"who is Pip's secret benefactor","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":39,"location":"chapter 39, passage #310","text":"…\"Yes, Pip, dear boy, I've made a gentleman on you! It's me wot has done it!\"…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-grimms-fairy-tales":{"post":{"operationId":"ask_grimms_fairy_tales","summary":"Ask a question about Grimms' Fairy Tales for a tutoring agent, quiz generator, or reading app — get back the most releva","description":"Ask a question about Grimms' Fairy Tales for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what happens to Cinderella's sisters?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what happens to Cinderella's sisters"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":2591,"title":"Grimms' Fairy Tales","author":"Grimm, Jacob, 1785-1863","question":"what happens to Cinderella's sisters","count":2,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":21,"location":"chapter 21, passage #5","text":"…the two sisters came to [Cinderella] to flatter her and share her good fortune…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-jane-eyre":{"post":{"operationId":"ask_jane_eyre","summary":"Ask a question about Jane Eyre for a tutoring agent, quiz generator, or reading app — get back the most relevant passage","description":"Ask a question about Jane Eyre for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Jane say about independence?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Jane say about independence"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1260,"title":"Jane Eyre: An Autobiography","author":"Brontë, Charlotte","question":"what does Jane say about independence","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":12,"location":"chapter 12, passage #90","text":"…I am no bird; and no net ensnares me: I am a free human being with an [independent] will…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-meditations":{"post":{"operationId":"ask_meditations","summary":"Ask a question about Marcus Aurelius's Meditations for a tutoring agent, quiz generator, or reading app — get back the m","description":"Ask a question about Marcus Aurelius's Meditations for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the text itself, with location citations. Retrieval only, full-text search over the real text, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does it say about death?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does it say about death"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":2680,"title":"Meditations","author":"Marcus Aurelius, Emperor of Rome, 121-180","question":"what does it say about death","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":2,"location":"chapter 2, passage #8","text":"…Thou hast embarked, thou hast made the voyage, thou art come to shore; get out…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-moby-dick":{"post":{"operationId":"ask_moby_dick","summary":"Ask a question about Moby-Dick for a tutoring agent, quiz generator, or reading app — get back the most relevant passage","description":"Ask a question about Moby-Dick for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Ahab say about the whale?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Ahab say about the white whale"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":2701,"title":"Moby Dick; or, the Whale","author":"Melville, Herman, 1819-1891","question":"what does Ahab say about the white whale","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":36,"location":"chapter 36, passage #612","text":"…that inscrutable thing is chiefly what I hate; and be the [white] [whale] agent, or be the [white] [whale] principal, I will wreak that hate upon him…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-picture-of-dorian-gray":{"post":{"operationId":"ask_picture_of_dorian_gray","summary":"Ask a question about The Picture of Dorian Gray for a tutoring agent, quiz generator, or reading app — get back the most","description":"Ask a question about The Picture of Dorian Gray for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what happens to the portrait?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what happens to the portrait"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":174,"title":"The Picture of Dorian Gray","author":"Wilde, Oscar","question":"what happens to the portrait","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":20,"location":"chapter 20, passage #160","text":"…the [portrait], with all the wonder of his exquisite youth and beauty…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-pride-and-prejudice":{"post":{"operationId":"ask_pride_and_prejudice","summary":"Ask a question about Pride and Prejudice for a tutoring agent, quiz generator, or reading app — get back the most releva","description":"Ask a question about Pride and Prejudice for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Elizabeth think of Darcy at the ball?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Elizabeth think of Darcy"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane, 1775-1817","question":"what does Elizabeth think of Darcy","count":4,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":3,"location":"chapter 3, passage #40","text":"…but [Darcy] was continually giving offense…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-sherlock-holmes":{"post":{"operationId":"ask_sherlock_holmes","summary":"Ask a question about The Adventures of Sherlock Holmes for a tutoring agent, quiz generator, or reading app — get back t","description":"Ask a question about The Adventures of Sherlock Holmes for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"how does Holmes describe Irene Adler?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"how does Holmes describe Irene Adler"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1661,"title":"The Adventures of Sherlock Holmes","author":"Doyle, Arthur Conan, 1859-1930","question":"how does Holmes describe Irene Adler","count":2,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":1,"location":"chapter 1, passage #6","text":"To Sherlock Holmes she is always [the] woman. I have seldom heard him mention her under any other name…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-the-iliad":{"post":{"operationId":"ask_the_iliad","summary":"Ask a question about Homer's Iliad for a tutoring agent, quiz generator, or reading app — get back the most relevant pas","description":"Ask a question about Homer's Iliad for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the text itself, with chapter and location citations. Retrieval only, full-text search over the real text, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"why is Achilles angry with Agamemnon?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"why is Achilles angry with Agamemnon"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":6130,"title":"The Iliad","author":"Homer","question":"why is Achilles angry with Agamemnon","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":1,"location":"chapter 1, passage #8","text":"…[Achilles] was furious, and his heart within his shaggy breast was divided…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-the-odyssey":{"post":{"operationId":"ask_the_odyssey","summary":"Ask a question about Homer's Odyssey for a tutoring agent, quiz generator, or reading app — get back the most relevant p","description":"Ask a question about Homer's Odyssey for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the text itself, with chapter and location citations. Retrieval only, full-text search over the real text, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"how does Odysseus escape the Cyclops?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"how does Odysseus escape the Cyclops"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1727,"title":"The Odyssey","author":"Homer","question":"how does Odysseus escape the Cyclops","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":9,"location":"chapter 9, passage #55","text":"…I told him my name was [No]man, and my mother and father and all my friends, too, called me [No]man…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-the-republic":{"post":{"operationId":"ask_the_republic","summary":"Ask a question about Plato's Republic for a tutoring agent, quiz generator, or reading app — get back the most relevant ","description":"Ask a question about Plato's Republic for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the text itself, with location citations. Retrieval only, full-text search over the real text, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Socrates say about justice?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Socrates say about justice"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":1497,"title":"The Republic","author":"Plato","question":"what does Socrates say about justice","count":4,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":1,"location":"chapter 1, passage #14","text":"…[justice] is the interest of the stronger…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-the-time-machine":{"post":{"operationId":"ask_the_time_machine","summary":"Ask a question about The Time Machine for a tutoring agent, quiz generator, or reading app — get back the most relevant ","description":"Ask a question about The Time Machine for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what are the Morlocks and Eloi?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what are the Morlocks and Eloi"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":35,"title":"The Time Machine","author":"Wells, H. G. (Herbert George)","question":"what are the Morlocks and Eloi","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":5,"location":"chapter 5, passage #40","text":"…these people I saw were not sophisticated…they struck me as being infantile…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-tom-sawyer":{"post":{"operationId":"ask_tom_sawyer","summary":"Ask a question about The Adventures of Tom Sawyer for a tutoring agent, quiz generator, or reading app — get back the mo","description":"Ask a question about The Adventures of Tom Sawyer for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"how does Tom get the fence painted?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"how does Tom get the fence painted"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":74,"title":"The Adventures of Tom Sawyer, Complete","author":"Twain, Mark, 1835-1910","question":"how does Tom get the fence painted","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":2,"location":"chapter 2, passage #20","text":"…Tom said to himself that it was not such a hollow world, after all…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-treasure-island":{"post":{"operationId":"ask_treasure_island","summary":"Ask a question about Treasure Island for a tutoring agent, quiz generator, or reading app — get back the most relevant p","description":"Ask a question about Treasure Island for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Long John Silver want?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Long John Silver want"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":120,"title":"Treasure Island","author":"Stevenson, Robert Louis","question":"what does Long John Silver want","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":11,"location":"chapter 11, passage #85","text":"…\"Dooty is dooty,\" [Silver] said. \"I give my word as a seaman…\""}]}}}},"402":{"description":"Payment Required"}}}},"/ask-walden":{"post":{"operationId":"ask_walden","summary":"Ask a question about Thoreau's Walden for a tutoring agent, quiz generator, or reading app — get back the most relevant ","description":"Ask a question about Thoreau's Walden for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the text itself, with chapter and location citations. Retrieval only, full-text search over the real text, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does he say about simplicity?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does he say about simplicity"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":205,"title":"Walden, and On The Duty Of Civil Disobedience","author":"Thoreau, Henry David, 1817-1862","question":"what does he say about simplicity","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":2,"location":"chapter 2, passage #30","text":"…[Simplicity], [simplicity], [simplicity]! I say, let your affairs be as two or three…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-war-and-peace":{"post":{"operationId":"ask_war_and_peace","summary":"Ask a question about War and Peace for a tutoring agent, quiz generator, or reading app — get back the most relevant pas","description":"Ask a question about War and Peace for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Pierre think about the war?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Pierre think about the war"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":2600,"title":"War and Peace","author":"Tolstoy, Leo, graf","question":"what does Pierre think about the war","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":3,"location":"chapter 3, passage #40","text":"…[Pierre] felt that everything was going wrong with him, and that his life had become intolerably difficult…"}]}}}},"402":{"description":"Payment Required"}}}},"/ask-wuthering-heights":{"post":{"operationId":"ask_wuthering_heights","summary":"Ask a question about Wuthering Heights for a tutoring agent, quiz generator, or reading app — get back the most relevant","description":"Ask a question about Wuthering Heights for a tutoring agent, quiz generator, or reading app — get back the most relevant passages from the book itself, with chapter and location citations. Retrieval only, full-text search over the real book, not a generated summary or answer. No license, no API key required.","tags":["ask"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.01"},"offers":[{"intent":"charge","method":"evm","amount":"10000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"question":{"type":"string","description":"Your question about the book, e.g. \"what does Catherine say about Heathcliff?\""},"limit":{"type":"integer","description":"Max passages (default 5, max 15)"}},"required":["question"]},"example":{"question":"what does Catherine say about Heathcliff"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AskResponse"},"example":{"book_id":768,"title":"Wuthering Heights","author":"Brontë, Emily","question":"what does Catherine say about Heathcliff","count":3,"method":"full-text retrieval — returns the most relevant passages from the book for your question; no summarization or generation","passages":[{"chapter":9,"location":"chapter 9, passage #70","text":"…\"I am Heathcliff! He's always, always in my mind…\"…"}]}}}},"402":{"description":"Payment Required"}}}},"/book-chapter":{"post":{"operationId":"book_chapter","summary":"Retrieve the full text of one chapter from an indexed book by book_id and chapter number. Chapter 0 is front matter befo","description":"Retrieve the full text of one chapter from an indexed book by book_id and chapter number. Chapter 0 is front matter before the first detected heading. Use /book-metadata first to see a book's valid chapter range. No license, no API key required.","tags":["reference"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.005"},"offers":[{"intent":"charge","method":"evm","amount":"5000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"book_id":{"type":"integer","description":"Gutenberg book id"},"chapter":{"type":"integer","description":"Chapter number — see chapter_range from /book-metadata"}},"required":["book_id","chapter"]},"example":{"book_id":11,"chapter":1}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BookChapterResponse"},"example":{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis, 1832-1898","chapter":1,"chapter_detection":"heading","chunk_count":8,"text":"Alice was beginning to get very tired of sitting by her sister on the bank..."}}}},"402":{"description":"Payment Required"}}}},"/book-metadata":{"post":{"operationId":"book_metadata","summary":"Look up full metadata for one indexed book by book_id: title, author, year, subjects, bookshelves, download rank, chunk ","description":"Look up full metadata for one indexed book by book_id: title, author, year, subjects, bookshelves, download rank, chunk count, and detected chapter range. Use book_id from /book-search or a category shelf. No license, no API key required.","tags":["reference"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.002"},"offers":[{"intent":"charge","method":"evm","amount":"2000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"book_id":{"type":"integer","description":"Gutenberg book id, e.g. 1342 for Pride and Prejudice"}},"required":["book_id"]},"example":{"book_id":1342}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BookMetadataResponse"},"example":{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane, 1775-1817","year":"1998","download_count":59636,"subjects":["Courtship -- Fiction","England -- Fiction"],"bookshelves":["Category: Novels","Best Books Ever Listings"],"chunk_count":973,"chapter_detection":"heading","chapters_available":62,"chapter_range":[0,61]}}}},"402":{"description":"Payment Required"}}}},"/book-of-the-day":{"post":{"operationId":"book_of_the_day","summary":"Deterministic daily book pick from the indexed corpus, date-seeded so every caller gets the same answer on the same day.","description":"Deterministic daily book pick from the indexed corpus, date-seeded so every caller gets the same answer on the same day. Optional date override for backfill. Returns book_id and drill-down routes. No license, no API key required.","tags":["reference"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.001"},"offers":[{"intent":"charge","method":"evm","amount":"1000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"date":{"type":"string","description":"Optional YYYY-MM-DD override, defaults to today (UTC)"}},"required":[]},"example":{}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BookOfTheDayResponse"},"example":{"date":"2026-07-29","book_id":1661,"title":"The Adventures of Sherlock Holmes","author":"Doyle, Arthur Conan, 1859-1930","year":"1999","pool_size":865,"drill_down":["/book-metadata","/book-chapter","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/book-quotes":{"post":{"operationId":"book_quotes","summary":"Get notable passages from one indexed book by book_id. Pass an optional theme to full-text search within that book, or o","description":"Get notable passages from one indexed book by book_id. Pass an optional theme to full-text search within that book, or omit it for a sample of short dialogue-bearing passages. Returns real excerpts, never generated or paraphrased. No license, no API key required.","tags":["reference"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.005"},"offers":[{"intent":"charge","method":"evm","amount":"5000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"book_id":{"type":"integer","description":"Gutenberg book id"},"theme":{"type":"string","description":"Optional theme or keyword to search for within this book, e.g. \"love\" or \"death\""},"limit":{"type":"integer","description":"Max passages (default 5, max 20)"}},"required":["book_id"]},"example":{"book_id":1342,"theme":"pride"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BookQuotesResponse"},"example":{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane, 1775-1817","theme":"pride","count":2,"method":"full-text search for the theme within this book","passages":[{"chapter":5,"chunk_index":88,"passage":"…[pride] is a very common failing, I believe…"}]}}}},"402":{"description":"Payment Required"}}}},"/book-search":{"post":{"operationId":"book_search","summary":"Search the indexed public-domain book corpus by title or author substring. Returns matching books ranked by historical p","description":"Search the indexed public-domain book corpus by title or author substring. Returns matching books ranked by historical popularity with book_id for drill-down into metadata, chapters, quotes, or full-text search. No license, no API key required.","tags":["search"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.005"},"offers":[{"intent":"charge","method":"evm","amount":"5000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"query":{"type":"string","description":"Title or author substring, e.g. \"Dickens\" or \"Frankenstein\""},"limit":{"type":"integer","description":"Max results (default 10, max 50)"}},"required":["query"]},"example":{"query":"Dickens"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BookSearchResponse"},"example":{"query":"Dickens","count":2,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":46,"title":"A Christmas Carol in Prose; Being a Ghost Story of Christmas","author":"Dickens, Charles, 1812-1870","year":"2004","download_count":70650,"subjects":["Ghost stories"]}]}}}},"402":{"description":"Payment Required"}}}},"/childrens-classics":{"post":{"operationId":"childrens_classics","summary":"Curated shelf of public-domain children's and young-adult classics, ranked by historical popularity. Returns title, auth","description":"Curated shelf of public-domain children's and young-adult classics, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's Classics","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis, 1832-1898","year":"2008","download_count":28040,"subjects":["Fantasy fiction"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/classic-literature":{"post":{"operationId":"classic_literature","summary":"Curated shelf of enduring public-domain classic novels and literary works, ranked by historical popularity. Returns titl","description":"Curated shelf of enduring public-domain classic novels and literary works, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key — every book is public domain in the USA.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Classic Literature","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane, 1775-1817","year":"1998","download_count":59636,"subjects":["Courtship -- Fiction","England -- Fiction"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/economics-and-politics":{"post":{"operationId":"economics_and_politics","summary":"Curated shelf of public-domain economics, politics, and political-theory texts, ranked by historical popularity. Returns","description":"Curated shelf of public-domain economics, politics, and political-theory texts, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Economics & Politics","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":1232,"title":"The Prince","author":"Machiavelli, Niccolò, 1469-1527","year":"1998","download_count":6000,"subjects":["Political science -- Early works to 1800"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/gothic-horror":{"post":{"operationId":"gothic_horror","summary":"Curated shelf of public-domain gothic and horror fiction, ranked by historical popularity. Returns title, author, year, ","description":"Curated shelf of public-domain gothic and horror fiction, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Gothic & Horror","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":345,"title":"Dracula","author":"Stoker, Bram, 1847-1912","year":"1995","download_count":20000,"subjects":["Horror tales","Vampires -- Fiction"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history":{"post":{"operationId":"history","summary":"Curated shelf of public-domain history texts spanning ancient to modern periods, ranked by historical popularity. Return","description":"Curated shelf of public-domain history texts spanning ancient to modern periods, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":731,"title":"The History of the Decline and Fall of the Roman Empire","author":"Gibbon, Edward, 1737-1794","year":"1996","download_count":3000,"subjects":["Rome -- History"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/library-card":{"post":{"operationId":"library_card","summary":"Mints a soulbound Reader's Card NFT to the wallet that paid this call — a public-domain library patron credential on Bas","description":"Mints a soulbound Reader's Card NFT to the wallet that paid this call — a public-domain library patron credential on Base. One card per wallet: if this wallet already holds one, you get its existing patron number back, no duplicate mint. TESTNET ONLY for now (Base Sepolia); mainnet launches after final art confirm.","tags":["membership"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.001"},"offers":[{"intent":"charge","method":"evm","amount":"1000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{},"required":[]},"example":{}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LibraryCardResponse"},"example":{"patron_number":"1024","token_id":"1024","holder":"0x85df5380DEbe236AD6BF49dE788243924B080267","already_held":false,"contract":"0xF498E179f96Ecf71079B73Cc4e8FCDF95eE5762e","network":"base-sepolia","explorer":"https://sepolia.basescan.org/nft/0xF498E179f96Ecf71079B73Cc4e8FCDF95eE5762e/1024","tokenURI_note":"Metadata and SVG art render fully on-chain — call tokenURI(token_id) on the contract, or view it directly in any NFT-aware wallet or explorer.","message":"Reader's Card minted — welcome to the ForgeMesh Library."}}}},"402":{"description":"Payment Required"}}}},"/literature-search":{"post":{"operationId":"literature_search","summary":"Full-text search across the entire indexed public-domain corpus. Returns the most relevant passages from any book with t","description":"Full-text search across the entire indexed public-domain corpus. Returns the most relevant passages from any book with title/author citations, ranked by relevance. The premium cross-corpus retrieval route — no LLM generation, real excerpts with sources. No license, no API key required.","tags":["search"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.02"},"offers":[{"intent":"charge","method":"evm","amount":"20000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"query":{"type":"string","description":"Free-text search query, e.g. \"the nature of justice\""},"limit":{"type":"integer","description":"Max results (default 10, max 30)"}},"required":["query"]},"example":{"query":"whale hunting"}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LiteratureSearchResponse"},"example":{"query":"whale hunting","count":1,"coverage":{"indexed":865,"target":1000},"results":[{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft, 1797-1851","passage":"…I accompanied the [whale]-fishers on several expeditions…","citation":"Frankenstein; or, the modern prometheus by Shelley, Mary Wollstonecraft, 1797-1851 — passage #1201"}]}}}},"402":{"description":"Payment Required"}}}},"/philosophy":{"post":{"operationId":"philosophy","summary":"Curated shelf of public-domain philosophy and ethics texts — from ancient to early-modern thought — ranked by historical","description":"Curated shelf of public-domain philosophy and ethics texts — from ancient to early-modern thought — ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Philosophy","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":1497,"title":"The Republic","author":"Plato","year":"1998","download_count":12000,"subjects":["Political science","Utopias"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/poetry":{"post":{"operationId":"poetry","summary":"Curated shelf of public-domain poetry collections, ranked by historical popularity. Returns title, author, year, book_id","description":"Curated shelf of public-domain poetry collections, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval of individual poems and passages. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Poetry","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":1065,"title":"The Raven","author":"Poe, Edgar Allan, 1809-1849","year":"1998","download_count":8000,"subjects":["American poetry"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-and-nature":{"post":{"operationId":"science_and_nature","summary":"Curated shelf of public-domain science and natural-history works, ranked by historical popularity. Returns title, author","description":"Curated shelf of public-domain science and natural-history works, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required. This is a small, niche shelf within the corpus.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science & Nature","count":3,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":2009,"title":"On the Origin of Species","author":"Darwin, Charles, 1809-1882","year":"2000","download_count":4000,"subjects":["Evolution (Biology)","Natural selection"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/shakespeare-and-drama":{"post":{"operationId":"shakespeare_and_drama","summary":"Curated shelf of public-domain plays and dramatic works, including Shakespeare, ranked by historical popularity. Returns","description":"Curated shelf of public-domain plays and dramatic works, including Shakespeare, ranked by historical popularity. Returns title, author, year, book_id, and drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Shakespeare & Drama","count":5,"coverage":{"indexed":865,"target":1000},"books":[{"book_id":1524,"title":"Hamlet","author":"Shakespeare, William, 1564-1616","year":"1998","download_count":15000,"subjects":["Tragedies (Drama)"]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/adultery-fiction":{"post":{"operationId":"adultery_fiction","summary":"Curated shelf: Adultery -- Fiction — 8 public-domain books including The Scarlet Letter, The Awakening, and Selected Sho","description":"Curated shelf: Adultery -- Fiction — 8 public-domain books including The Scarlet Letter, The Awakening, and Selected Short Stories, Anna Karenina. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Adultery -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":33,"title":"The Scarlet Letter","author":"Hawthorne, Nathaniel, 1804-1864","year":null,"download_count":22293,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/adventure-and-adventurers-juvenile-fiction":{"post":{"operationId":"adventure_and_adventurers_juvenile_fiction","summary":"Curated reading list on Adventure and adventurers -- Juvenile fiction for tutoring agents, quiz generators, and reading ","description":"Curated reading list on Adventure and adventurers -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 296 public-domain books (e.g. The last dragon, The Boy With the U. S. Fisheries, Tom Swift and His Giant Telescope). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Adventure and adventurers -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76411,"title":"The last dragon","author":"Totheroh, Dan","year":null,"download_count":11316,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/adventure-stories":{"post":{"operationId":"adventure_stories","summary":"Curated reading list on Adventure stories for tutoring agents, quiz generators, and reading apps — 1382 public-domain bo","description":"Curated reading list on Adventure stories for tutoring agents, quiz generators, and reading apps — 1382 public-domain books (e.g. Moby Dick; Or, The Whale, The Count of Monte Cristo, The Yeoman Adventurer). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Adventure stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ae":{"post":{"operationId":"ae","summary":"Curated reading list on AE for tutoring agents, quiz generators, and reading apps — 140 public-domain books (e.g. Encycl","description":"Curated reading list on AE for tutoring agents, quiz generators, and reading apps — 140 public-domain books (e.g. Encyclopaedia Britannica, 11th Edition, \"Banks\" to \"Bassoon\" Volume 3, Part 1, Slice 3, Encyclopaedia Britannica, 11th Edition, \"Austria, Lower\" to \"Bacon\" Volume 3, Part 1, Slice 1). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"AE","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27480,"title":"Encyclopaedia Britannica, 11th Edition, \"Banks\" to \"Bassoon\" Volume 3, Part 1, Slice 3","author":"Various","year":null,"download_count":6774,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/african-american-writers":{"post":{"operationId":"african_american_writers","summary":"Curated shelf: African American Writers — 9 public-domain books including Narrative of the Life of Frederick Douglass, a","description":"Curated shelf: African American Writers — 9 public-domain books including Narrative of the Life of Frederick Douglass, an American Slave, The Souls of Black Folk, Incidents in the Life of a Slave Girl, Written by Herself. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"African American Writers","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":23,"title":"Narrative of the Life of Frederick Douglass, an American Slave","author":"Douglass, Frederick, 1818-1895","year":null,"download_count":11243,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ag":{"post":{"operationId":"ag","summary":"Curated reading list on AG for tutoring agents, quiz generators, and reading apps — 254 public-domain books (e.g. Englis","description":"Curated reading list on AG for tutoring agents, quiz generators, and reading apps — 254 public-domain books (e.g. English Eccentrics and Eccentricities, Moby Multiple Language Lists of Common Words, The Nuttall encyclopædia : $b being a concise and comprehensive dictionary of general knowledge). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"AG","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":50439,"title":"English Eccentrics and Eccentricities","author":"Timbs, John","year":null,"download_count":18152,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/american-fiction-19th-century":{"post":{"operationId":"american_fiction_19th_century","summary":"Curated reading list on American fiction -- 19th century for tutoring agents, quiz generators, and reading apps — 199 pu","description":"Curated reading list on American fiction -- 19th century for tutoring agents, quiz generators, and reading apps — 199 public-domain books (e.g. The Works of Edgar Allan Poe — Volume 2, The Works of Edgar Allan Poe — Volume 1, Cruel as the grave). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"American fiction -- 19th century","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2148,"title":"The Works of Edgar Allan Poe — Volume 2","author":"Poe, Edgar Allan","year":null,"download_count":37076,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/american-fiction-20th-century":{"post":{"operationId":"american_fiction_20th_century","summary":"Curated reading list on American fiction -- 20th century for tutoring agents, quiz generators, and reading apps — 134 pu","description":"Curated reading list on American fiction -- 20th century for tutoring agents, quiz generators, and reading apps — 134 public-domain books (e.g. The Dunwich horror, The best short stories of 1920, and the yearbook of the American short story, The best short stories of 1919, and the yearbook of the American short story). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"American fiction -- 20th century","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":50133,"title":"The Dunwich horror","author":"Lovecraft, H. P. (Howard Phillips)","year":null,"download_count":40148,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/american-literature":{"post":{"operationId":"american_literature","summary":"Curated reading list on American Literature for tutoring agents, quiz generators, and reading apps — 7572 public-domain ","description":"Curated reading list on American Literature for tutoring agents, quiz generators, and reading apps — 7572 public-domain books (e.g. Moby Dick; Or, The Whale, Little Women; Or, Meg, Jo, Beth, and Amy, Bidwell's Travels, from Wall Street to London Prison: Fifteen Years in Solitude). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"American Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/american-periodicals":{"post":{"operationId":"american_periodicals","summary":"Curated reading list on American periodicals for tutoring agents, quiz generators, and reading apps — 148 public-domain ","description":"Curated reading list on American periodicals for tutoring agents, quiz generators, and reading apps — 148 public-domain books (e.g. The Atlantic Monthly, Volume 20, No. 122, December, 1867 A Magazine of Literature, Science, Art, and Politics, The Atlantic Monthly, Volume 17, No. 102, April, 1866 A Magazine of Literature, Science, Art, and Politics). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"American periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":28630,"title":"The Atlantic Monthly, Volume 20, No. 122, December, 1867 A Magazine of Literature, Science, Art, and Politics","author":"Various","year":null,"download_count":7022,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/american-poetry":{"post":{"operationId":"american_poetry","summary":"Curated reading list on American poetry for tutoring agents, quiz generators, and reading apps — 203 public-domain books","description":"Curated reading list on American poetry for tutoring agents, quiz generators, and reading apps — 203 public-domain books (e.g. The Home Book of Verse — Volume 2, Poems by Emily Dickinson, Three Series, Complete, Tales of a Wayside Inn). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"American poetry","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2620,"title":"The Home Book of Verse — Volume 2","author":"Stevenson, Burton Egbert","year":null,"download_count":33846,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/american-wit-and-humor":{"post":{"operationId":"american_wit_and_humor","summary":"Curated reading list on American wit and humor for tutoring agents, quiz generators, and reading apps — 133 public-domai","description":"Curated reading list on American wit and humor for tutoring agents, quiz generators, and reading apps — 133 public-domain books (e.g. Comic History of the United States, Jokes For All Occasions Selected and Edited by One of America's Foremost Public Speakers, Fables in Slang). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"American wit and humor","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21427,"title":"Comic History of the United States","author":"Nye, Bill","year":null,"download_count":12595,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/animal":{"post":{"operationId":"animal","summary":"Curated reading list on Animal for tutoring agents, quiz generators, and reading apps — 242 public-domain books (e.g. Wi","description":"Curated reading list on Animal for tutoring agents, quiz generators, and reading apps — 242 public-domain books (e.g. Wild Animals at Home, Delineations of the Ox Tribe: The Natural History of Bulls, Bisons, and Buffaloes. Exhibiting all the Known Species and the More Remarkable Varieties of the Genus Bos.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Animal","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27887,"title":"Wild Animals at Home","author":"Seton, Ernest Thompson","year":null,"download_count":8349,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/animals-juvenile-fiction":{"post":{"operationId":"animals_juvenile_fiction","summary":"Curated reading list on Animals -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 344 public-","description":"Curated reading list on Animals -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 344 public-domain books (e.g. Winnie-the-Pooh, The Singing Mouse Stories, Little Mr. Thimblefinger and His Queer Country). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Animals -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":67098,"title":"Winnie-the-Pooh","author":"Milne, A. A. (Alan Alexander)","year":null,"download_count":12707,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ap":{"post":{"operationId":"ap","summary":"Curated reading list on AP for tutoring agents, quiz generators, and reading apps — 2511 public-domain books (e.g. The S","description":"Curated reading list on AP for tutoring agents, quiz generators, and reading apps — 2511 public-domain books (e.g. The Strand Magazine, Vol. 27, February 1904, No. 159., Chambers's Edinburgh Journal, No. 452 Volume 18, New Series, August 28, 1852, Golden Days for Boys and Girls, Vol. XII, Jan. 3, 1891). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"AP","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":47642,"title":"The Strand Magazine, Vol. 27, February 1904, No. 159.","author":"Various","year":null,"download_count":40098,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/archaeology-anthropology":{"post":{"operationId":"archaeology_anthropology","summary":"Curated reading list on Archaeology & Anthropology for tutoring agents, quiz generators, and reading apps — 1485 public-","description":"Curated reading list on Archaeology & Anthropology for tutoring agents, quiz generators, and reading apps — 1485 public-domain books (e.g. Cornish Characters and Strange Events, The Natural History of Pliny, Volume 2 (of 6), A history of art in Chaldæa & Assyria, Vol. 1 (of 2)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Archaeology & Anthropology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":41775,"title":"Cornish Characters and Strange Events","author":"Baring-Gould, S. (Sabine)","year":null,"download_count":18202,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/architecture":{"post":{"operationId":"architecture","summary":"Curated reading list on Architecture for tutoring agents, quiz generators, and reading apps — 580 public-domain books (e","description":"Curated reading list on Architecture for tutoring agents, quiz generators, and reading apps — 580 public-domain books (e.g. The Crown of Wild Olive also Munera Pulveris; Pre-Raphaelitism; Aratra Pentelici; The Ethics of the Dust; Fiction, Fair and Foul; The Elements of Drawing, The Care of Books). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Architecture","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":26716,"title":"The Crown of Wild Olive also Munera Pulveris; Pre-Raphaelitism; Aratra Pentelici; The Ethics of the Dust; Fiction, Fair and Foul; The Elements of Drawing","author":"Ruskin, John","year":null,"download_count":23930,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/art":{"post":{"operationId":"art","summary":"Curated reading list on Art for tutoring agents, quiz generators, and reading apps — 1569 public-domain books (e.g. Live","description":"Curated reading list on Art for tutoring agents, quiz generators, and reading apps — 1569 public-domain books (e.g. Lives of the Most Eminent Painters Sculptors and Architects, Vol. 01 (of 10) Cimabue to Agnolo Gaddi, The Notebooks of Leonardo Da Vinci — Complete, A history of art in Chaldæa & Assyria, Vol. 1 (of 2)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Art","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25326,"title":"Lives of the Most Eminent Painters Sculptors and Architects, Vol. 01 (of 10) Cimabue to Agnolo Gaddi","author":"Vasari, Giorgio","year":null,"download_count":23867,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/b":{"post":{"operationId":"b","summary":"Curated reading list on B for tutoring agents, quiz generators, and reading apps — 350 public-domain books (e.g. Meditat","description":"Curated reading list on B for tutoring agents, quiz generators, and reading apps — 350 public-domain books (e.g. Meditations, Ecce Homo Complete Works, Volume Seventeen, The Lives and Opinions of Eminent Philosophers). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"B","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2680,"title":"Meditations","author":"Marcus Aurelius, Emperor of Rome","year":null,"download_count":60197,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/banned-books-from-anne-haight-s-list":{"post":{"operationId":"banned_books_from_anne_haight_s_list","summary":"Curated shelf: Banned Books from Anne Haight's list — 41 public-domain books including The Adventures of Sherlock Holmes","description":"Curated shelf: Banned Books from Anne Haight's list — 41 public-domain books including The Adventures of Sherlock Holmes, Adventures of Huckleberry Finn, The Adventures of Tom Sawyer, Complete. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Banned Books from Anne Haight's list","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1661,"title":"The Adventures of Sherlock Holmes","author":"Doyle, Arthur Conan, 1859-1930","year":null,"download_count":23345,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/banned-books-list-from-the-american-library-association":{"post":{"operationId":"banned_books_list_from_the_american_library_association","summary":"Curated shelf: Banned Books List from the American Library Association — 10 public-domain books including Adventures of ","description":"Curated shelf: Banned Books List from the American Library Association — 10 public-domain books including Adventures of Huckleberry Finn, The Adventures of Tom Sawyer, Complete, The Awakening, and Selected Short Stories. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Banned Books List from the American Library Association","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":76,"title":"Adventures of Huckleberry Finn","author":"Twain, Mark, 1835-1910","year":null,"download_count":16810,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/best-books-ever-listings":{"post":{"operationId":"best_books_ever_listings","summary":"Curated reading list on Best Books Ever Listings for tutoring agents, quiz generators, and reading apps — 154 public-dom","description":"Curated reading list on Best Books Ever Listings for tutoring agents, quiz generators, and reading apps — 154 public-domain books (e.g. Moby Dick; Or, The Whale, Pride and Prejudice, Crime and Punishment). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Best Books Ever Listings","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bestsellers-american-1895-1923":{"post":{"operationId":"bestsellers_american_1895_1923","summary":"Curated reading list on Bestsellers, American, 1895-1923 for tutoring agents, quiz generators, and reading apps — 407 pu","description":"Curated reading list on Bestsellers, American, 1895-1923 for tutoring agents, quiz generators, and reading apps — 407 public-domain books (e.g. The History of Sir Richard Calmady: A Romance, The Enchanted April, The Hound of the Baskervilles). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Bestsellers, American, 1895-1923","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23784,"title":"The History of Sir Richard Calmady: A Romance","author":"Malet, Lucas","year":null,"download_count":45009,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bf":{"post":{"operationId":"bf","summary":"Curated reading list on BF for tutoring agents, quiz generators, and reading apps — 431 public-domain books (e.g. The le","description":"Curated reading list on BF for tutoring agents, quiz generators, and reading apps — 431 public-domain books (e.g. The lesser Key of Solomon, Goetia, the book of evil spirits : $b contains two hundred diagrams and seals for invocation and convocation of spirits, necromancy, witchcraft and black art, The spirit-rapper; an autobiography). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BF","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":72679,"title":"The lesser Key of Solomon, Goetia, the book of evil spirits : $b contains two hundred diagrams and seals for invocation and convocation of spirits, necromancy, witchcraft and black art","author":"Unknown","year":null,"download_count":16682,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bildungsromans":{"post":{"operationId":"bildungsromans","summary":"Curated reading list on Bildungsromans for tutoring agents, quiz generators, and reading apps — 215 public-domain books ","description":"Curated reading list on Bildungsromans for tutoring agents, quiz generators, and reading apps — 215 public-domain books (e.g. Middlemarch, Jane Eyre: An Autobiography, Little Women; Or, Meg, Jo, Beth, and Amy). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Bildungsromans","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":145,"title":"Middlemarch","author":"Eliot, George","year":null,"download_count":75709,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/biographies":{"post":{"operationId":"biographies","summary":"Curated reading list on Biographies for tutoring agents, quiz generators, and reading apps — 5163 public-domain books (e","description":"Curated reading list on Biographies for tutoring agents, quiz generators, and reading apps — 5163 public-domain books (e.g. The Love Letters of Mary Wollstonecraft to Gilbert Imlay, Modern English biography, volume 2 (of 4), I-Q, My Life — Volume 1). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Biographies","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":34413,"title":"The Love Letters of Mary Wollstonecraft to Gilbert Imlay","author":"Wollstonecraft, Mary","year":null,"download_count":77483,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bj":{"post":{"operationId":"bj","summary":"Curated reading list on BJ for tutoring agents, quiz generators, and reading apps — 260 public-domain books (e.g. The Ph","description":"Curated reading list on BJ for tutoring agents, quiz generators, and reading apps — 260 public-domain books (e.g. The Philosophy of the Moral Feelings, The Book of Business Etiquette, The Map of Life Conduct and Character). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BJ","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22364,"title":"The Philosophy of the Moral Feelings","author":"Abercrombie, John","year":null,"download_count":7858,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bl":{"post":{"operationId":"bl","summary":"Curated reading list on BL for tutoring agents, quiz generators, and reading apps — 391 public-domain books (e.g. The Re","description":"Curated reading list on BL for tutoring agents, quiz generators, and reading apps — 391 public-domain books (e.g. The Religious Experience of the Roman People From the Earliest Times to the Age of Augustus, Natural Law in the Spiritual World, The Varieties of Religious Experience: A Study in Human Nature). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BL","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23349,"title":"The Religious Experience of the Roman People From the Earliest Times to the Age of Augustus","author":"Fowler, W. Warde (William Warde)","year":null,"download_count":10892,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/boys-juvenile-fiction":{"post":{"operationId":"boys_juvenile_fiction","summary":"Curated reading list on Boys -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 229 public-dom","description":"Curated reading list on Boys -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 229 public-domain books (e.g. The Launch Boys' Adventures in Northern Waters, Bert Lloyd's Boyhood: A Story from Nova Scotia, Tom, The Bootblack; or, The Road to Success). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Boys -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25849,"title":"The Launch Boys' Adventures in Northern Waters","author":"Ellis, Edward Sylvester","year":null,"download_count":9253,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/br":{"post":{"operationId":"br","summary":"Curated reading list on BR for tutoring agents, quiz generators, and reading apps — 229 public-domain books (e.g. The Ci","description":"Curated reading list on BR for tutoring agents, quiz generators, and reading apps — 229 public-domain books (e.g. The City of God, Volume I, The Confessions of St. Augustine, Fox's Book of Martyrs Or A History of the Lives, Sufferings, and Triumphant Deaths of the Primitive Protestant Martyrs). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BR","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":45304,"title":"The City of God, Volume I","author":"Augustine, of Hippo, Saint","year":null,"download_count":53828,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/british-literature":{"post":{"operationId":"british_literature","summary":"Curated reading list on British Literature for tutoring agents, quiz generators, and reading apps — 9405 public-domain b","description":"Curated reading list on British Literature for tutoring agents, quiz generators, and reading apps — 9405 public-domain books (e.g. Pride and Prejudice, Romeo and Juliet, A Room with a View). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"British Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bs":{"post":{"operationId":"bs","summary":"Curated reading list on BS for tutoring agents, quiz generators, and reading apps — 594 public-domain books (e.g. The Ki","description":"Curated reading list on BS for tutoring agents, quiz generators, and reading apps — 594 public-domain books (e.g. The King James Version of the Bible, Expositions of Holy Scripture Second Corinthians, Galatians, and Philippians Chapters I to End. Colossians, Thessalonians, and First Timothy., Jeremiah : Being The Baird Lecture for 1922). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BS","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":10,"title":"The King James Version of the Bible","author":"Unknown","year":null,"download_count":16681,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bt":{"post":{"operationId":"bt","summary":"Curated reading list on BT for tutoring agents, quiz generators, and reading apps — 193 public-domain books (e.g. The Pa","description":"Curated reading list on BT for tutoring agents, quiz generators, and reading apps — 193 public-domain books (e.g. The Parables of Our Lord, The Ordinance of Covenanting, A Theodicy, or, Vindication of the Divine Glory). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BT","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21328,"title":"The Parables of Our Lord","author":"Arnot, William","year":null,"download_count":12571,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/business-management":{"post":{"operationId":"business_management","summary":"Curated reading list on Business/Management for tutoring agents, quiz generators, and reading apps — 154 public-domain b","description":"Curated reading list on Business/Management for tutoring agents, quiz generators, and reading apps — 154 public-domain books (e.g. Twenty Years of Hus'ling, The Book of Business Etiquette, The art of money getting : $b or, golden rules for making money). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Business/Management","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25087,"title":"Twenty Years of Hus'ling","author":"Johnston, J. P. (James Perry)","year":null,"download_count":12482,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bv":{"post":{"operationId":"bv","summary":"Curated reading list on BV for tutoring agents, quiz generators, and reading apps — 667 public-domain books (e.g. Some J","description":"Curated reading list on BV for tutoring agents, quiz generators, and reading apps — 667 public-domain books (e.g. Some Jewish Witnesses For Christ, My Daily Meditation for the Circling Year, India's Problem, Krishna or Christ). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BV","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37734,"title":"Some Jewish Witnesses For Christ","author":"Bernstein, Aaron","year":null,"download_count":39047,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/bx":{"post":{"operationId":"bx","summary":"Curated reading list on BX for tutoring agents, quiz generators, and reading apps — 735 public-domain books (e.g. Apolog","description":"Curated reading list on BX for tutoring agents, quiz generators, and reading apps — 735 public-domain books (e.g. Apologia pro vita sua : $b being a history of his religious opinions, Jesus the Christ A Study of the Messiah and His Mission According to Holy Scriptures Both Ancient and Modern, The Works of Mr. George Gillespie (Vol. 1 of 2)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"BX","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22088,"title":"Apologia pro vita sua : $b being a history of his religious opinions","author":"Newman, John Henry","year":null,"download_count":18980,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-conduct-of-life-juvenile-fiction":{"post":{"operationId":"children_conduct_of_life_juvenile_fiction","summary":"Curated reading list on Children -- Conduct of life -- Juvenile fiction for tutoring agents, quiz generators, and readin","description":"Curated reading list on Children -- Conduct of life -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 431 public-domain books (e.g. The strange house : $b or, A moment's mistake, With Spurs of Gold: Heroes of Chivalry and their Deeds, Golden Moments Bright Stories for Young Folks). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children -- Conduct of life -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76759,"title":"The strange house : $b or, A moment's mistake","author":"Shaw, Catharine","year":null,"download_count":11827,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-book-series":{"post":{"operationId":"children_s_book_series","summary":"Curated reading list on Children's Book Series for tutoring agents, quiz generators, and reading apps — 505 public-domai","description":"Curated reading list on Children's Book Series for tutoring agents, quiz generators, and reading apps — 505 public-domain books (e.g. The Rover Boys on the Farm; or, Last Days at Putnam Hall, The Boy With the U. S. Fisheries, The Rover Boys on a Hunt; or, The Mysterious House in the Woods). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's Book Series","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22163,"title":"The Rover Boys on the Farm; or, Last Days at Putnam Hall","author":"Stratemeyer, Edward","year":null,"download_count":36057,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-fiction":{"post":{"operationId":"children_s_fiction","summary":"Curated reading list on Children's Fiction for tutoring agents, quiz generators, and reading apps — 334 public-domain bo","description":"Curated reading list on Children's Fiction for tutoring agents, quiz generators, and reading apps — 334 public-domain books (e.g. The Railway Children, Breaking Away; or, The Fortunes of a Student, At Aboukir and Acre: A Story of Napoleon's Invasion of Egypt). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1874,"title":"The Railway Children","author":"Nesbit, E. (Edith)","year":null,"download_count":21772,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-history":{"post":{"operationId":"children_s_history","summary":"Curated reading list on Children's History for tutoring agents, quiz generators, and reading apps — 132 public-domain bo","description":"Curated reading list on Children's History for tutoring agents, quiz generators, and reading apps — 132 public-domain books (e.g. Personal Memoirs of U. S. Grant, Complete, The Journals of Lewis and Clark, 1804-1806, The Story of the Greeks). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's History","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":4367,"title":"Personal Memoirs of U. S. Grant, Complete","author":"Grant, Ulysses S. (Ulysses Simpson)","year":null,"download_count":25933,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-literature":{"post":{"operationId":"children_s_literature","summary":"Curated reading list on Children's Literature for tutoring agents, quiz generators, and reading apps — 304 public-domain","description":"Curated reading list on Children's Literature for tutoring agents, quiz generators, and reading apps — 304 public-domain books (e.g. Alice's Adventures in Wonderland, The Wonderful Wizard of Oz, Treasure Island). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis","year":null,"download_count":82955,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-periodicals-american":{"post":{"operationId":"children_s_periodicals_american","summary":"Curated reading list on Children's periodicals, American for tutoring agents, quiz generators, and reading apps — 180 pu","description":"Curated reading list on Children's periodicals, American for tutoring agents, quiz generators, and reading apps — 180 public-domain books (e.g. St. Nicholas Magazine for Boys and Girls, Vol. 5, No. 08, June 1878 Scribner's Illustrated, St. Nicholas Magazine for Boys and Girls, Vol. 5, July 1878, No. 9). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's periodicals, American","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":16123,"title":"St. Nicholas Magazine for Boys and Girls, Vol. 5, No. 08, June 1878 Scribner's Illustrated","author":"Various","year":null,"download_count":799,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-picture-books":{"post":{"operationId":"children_s_picture_books","summary":"Curated reading list on Children's Picture Books for tutoring agents, quiz generators, and reading apps — 172 public-dom","description":"Curated reading list on Children's Picture Books for tutoring agents, quiz generators, and reading apps — 172 public-domain books (e.g. The Tale of Peter Rabbit, Struwwelpeter: Merry Stories and Funny Pictures, The National Nursery Book With 120 illustrations). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's Picture Books","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":14838,"title":"The Tale of Peter Rabbit","author":"Potter, Beatrix","year":null,"download_count":18733,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-poetry":{"post":{"operationId":"children_s_poetry","summary":"Curated reading list on Children's poetry for tutoring agents, quiz generators, and reading apps — 215 public-domain boo","description":"Curated reading list on Children's poetry for tutoring agents, quiz generators, and reading apps — 215 public-domain books (e.g. The Home Book of Verse — Volume 2, The Posy Ring: A Book of Verse for Children, Golden Moments Bright Stories for Young Folks). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's poetry","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2620,"title":"The Home Book of Verse — Volume 2","author":"Stevenson, Burton Egbert","year":null,"download_count":33846,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-s-stories":{"post":{"operationId":"children_s_stories","summary":"Curated reading list on Children's stories for tutoring agents, quiz generators, and reading apps — 559 public-domain bo","description":"Curated reading list on Children's stories for tutoring agents, quiz generators, and reading apps — 559 public-domain books (e.g. Alice's Adventures in Wonderland, Fifty-Two Stories For Girls, Through the Looking-Glass). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children's stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis","year":null,"download_count":82955,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/children-young-adult-reading":{"post":{"operationId":"children_young_adult_reading","summary":"Curated reading list on Children & Young Adult Reading for tutoring agents, quiz generators, and reading apps — 6345 pub","description":"Curated reading list on Children & Young Adult Reading for tutoring agents, quiz generators, and reading apps — 6345 public-domain books (e.g. Alice's Adventures in Wonderland, Little Women; Or, Meg, Jo, Beth, and Amy, The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Children & Young Adult Reading","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis","year":null,"download_count":82955,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/christian-fiction":{"post":{"operationId":"christian_fiction","summary":"Curated reading list on Christian fiction for tutoring agents, quiz generators, and reading apps — 157 public-domain boo","description":"Curated reading list on Christian fiction for tutoring agents, quiz generators, and reading apps — 157 public-domain books (e.g. Parables from flowers, The Grand Inquisitor, The Pilgrim's Progress from this world to that which is to come Delivered under the similitude of a dream, by John Bunyan). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Christian fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27718,"title":"Parables from flowers","author":"Dyer, Gertrude P.","year":null,"download_count":4290,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/christian-life-juvenile-fiction":{"post":{"operationId":"christian_life_juvenile_fiction","summary":"Curated reading list on Christian life -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 503 ","description":"Curated reading list on Christian life -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 503 public-domain books (e.g. The strange house : $b or, A moment's mistake, The happiness of Hazelbrook, Grateful Peter's new year's gift). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Christian life -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76759,"title":"The strange house : $b or, A moment's mistake","author":"Shaw, Catharine","year":null,"download_count":11827,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/christianity":{"post":{"operationId":"christianity","summary":"Curated reading list on Christianity for tutoring agents, quiz generators, and reading apps — 214 public-domain books (e","description":"Curated reading list on Christianity for tutoring agents, quiz generators, and reading apps — 214 public-domain books (e.g. The Confessions of St. Augustine, Jesus the Christ A Study of the Messiah and His Mission According to Holy Scriptures Both Ancient and Modern). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Christianity","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":3296,"title":"The Confessions of St. Augustine","author":"Augustine, of Hippo, Saint","year":null,"download_count":48253,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/christmas-stories":{"post":{"operationId":"christmas_stories","summary":"Curated reading list on Christmas stories for tutoring agents, quiz generators, and reading apps — 210 public-domain boo","description":"Curated reading list on Christmas stories for tutoring agents, quiz generators, and reading apps — 210 public-domain books (e.g. A Christmas Carol in Prose; Being a Ghost Story of Christmas, A Budget of Christmas Tales by Charles Dickens and Others, Patty's Success). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Christmas stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":46,"title":"A Christmas Carol in Prose; Being a Ghost Story of Christmas","author":"Dickens, Charles","year":null,"download_count":14246,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/christmas":{"post":{"operationId":"christmas","summary":"Curated reading list on Christmas for tutoring agents, quiz generators, and reading apps — 139 public-domain books (e.g.","description":"Curated reading list on Christmas for tutoring agents, quiz generators, and reading apps — 139 public-domain books (e.g. The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House, A Christmas Carol in Prose; Being a Ghost Story of Christmas). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Christmas","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":38983,"title":"The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House","author":"Frey, Hildegard G.","year":null,"download_count":37267,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/classical-antiquity":{"post":{"operationId":"classical_antiquity","summary":"Curated shelf: Classical Antiquity — 13 public-domain books including The Iliad, The Odyssey, The Confessions of St. Aug","description":"Curated shelf: Classical Antiquity — 13 public-domain books including The Iliad, The Odyssey, The Confessions of St. Augustine. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Classical Antiquity","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":2199,"title":"The Iliad","author":"Homer, 751? BCE-651? BCE","year":null,"download_count":7982,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/classical-literature":{"post":{"operationId":"classical_literature","summary":"Curated shelf: Classical literature — 12 public-domain books including The Iliad, The Metamorphoses of Ovid, Books I-VII","description":"Curated shelf: Classical literature — 12 public-domain books including The Iliad, The Metamorphoses of Ovid, Books I-VII, Apology. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Classical literature","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":2199,"title":"The Iliad","author":"Homer, 751? BCE-651? BCE","year":null,"download_count":7982,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/classics-of-literature":{"post":{"operationId":"classics_of_literature","summary":"Curated reading list on Classics of Literature for tutoring agents, quiz generators, and reading apps — 1157 public-doma","description":"Curated reading list on Classics of Literature for tutoring agents, quiz generators, and reading apps — 1157 public-domain books (e.g. Moby Dick; Or, The Whale, Pride and Prejudice, Romeo and Juliet). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Classics of Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/comedy-plays":{"post":{"operationId":"comedy_plays","summary":"Curated reading list on Comedy plays for tutoring agents, quiz generators, and reading apps — 222 public-domain books (e","description":"Curated reading list on Comedy plays for tutoring agents, quiz generators, and reading apps — 222 public-domain books (e.g. A Midsummer Night's Dream, As You Like It, Love's Labour's Lost). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Comedy plays","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1514,"title":"A Midsummer Night's Dream","author":"Shakespeare, William","year":null,"download_count":33713,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/conduct-of-life-juvenile-fiction":{"post":{"operationId":"conduct_of_life_juvenile_fiction","summary":"Curated reading list on Conduct of life -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 101","description":"Curated reading list on Conduct of life -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 1019 public-domain books (e.g. Baron Trump's Marvellous Underground Journey, Fifty-Two Stories For Girls, The strange house : $b or, A moment's mistake). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Conduct of life -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":57426,"title":"Baron Trump's Marvellous Underground Journey","author":"Lockwood, Ingersoll","year":null,"download_count":27005,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/congregational-churches-missions-periodicals":{"post":{"operationId":"congregational_churches_missions_periodicals","summary":"Curated reading list on Congregational churches -- Missions -- Periodicals for tutoring agents, quiz generators, and rea","description":"Curated reading list on Congregational churches -- Missions -- Periodicals for tutoring agents, quiz generators, and reading apps — 145 public-domain books (e.g. The American Missionary — Volume 42, No. 03, March, 1888, The American Missionary — Volume 34, No. 7, July, 1880, The American Missionary — Volume 49, No. 03, March, 1895). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Congregational churches -- Missions -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11764,"title":"The American Missionary — Volume 42, No. 03, March, 1888","author":"Various","year":null,"download_count":806,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/cooking-drinking":{"post":{"operationId":"cooking_drinking","summary":"Curated reading list on Cooking & Drinking for tutoring agents, quiz generators, and reading apps — 423 public-domain bo","description":"Curated reading list on Cooking & Drinking for tutoring agents, quiz generators, and reading apps — 423 public-domain books (e.g. Facts About Champagne and Other Sparkling Wines, The Suffrage Cook Book, The accomplisht cook or, The art & mystery of cookery). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Cooking & Drinking","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":20889,"title":"Facts About Champagne and Other Sparkling Wines","author":"Vizetelly, Henry","year":null,"download_count":10940,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/crime-thrillers-and-mystery":{"post":{"operationId":"crime_thrillers_and_mystery","summary":"Curated reading list on Crime, Thrillers and Mystery for tutoring agents, quiz generators, and reading apps — 1977 publi","description":"Curated reading list on Crime, Thrillers and Mystery for tutoring agents, quiz generators, and reading apps — 1977 public-domain books (e.g. Crime and Punishment, Carmen, The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Crime, Thrillers and Mystery","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2554,"title":"Crime and Punishment","author":"Dostoyevsky, Fyodor","year":null,"download_count":93752,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ct":{"post":{"operationId":"ct","summary":"Curated reading list on CT for tutoring agents, quiz generators, and reading apps — 242 public-domain books (e.g. Modern","description":"Curated reading list on CT for tutoring agents, quiz generators, and reading apps — 242 public-domain books (e.g. Modern English biography, volume 2 (of 4), I-Q, Bidwell's Travels, from Wall Street to London Prison: Fifteen Years in Solitude, Modern English biography, volume 1 (of 4), A-H). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"CT","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":71046,"title":"Modern English biography, volume 2 (of 4), I-Q","author":"Boase, Frederic","year":null,"download_count":74682,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/d":{"post":{"operationId":"d","summary":"Curated reading list on D for tutoring agents, quiz generators, and reading apps — 506 public-domain books (e.g. Ancient","description":"Curated reading list on D for tutoring agents, quiz generators, and reading apps — 506 public-domain books (e.g. Ancient States and Empires For Colleges and Schools, The Land of Thor, A History of the Nineteenth Century, Year by Year. Volume 2 (of 3)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"D","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27114,"title":"Ancient States and Empires For Colleges and Schools","author":"Lord, John","year":null,"download_count":16138,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/d501":{"post":{"operationId":"d501","summary":"Curated reading list on D501 for tutoring agents, quiz generators, and reading apps — 811 public-domain books (e.g. The ","description":"Curated reading list on D501 for tutoring agents, quiz generators, and reading apps — 811 public-domain books (e.g. The Roll of Honour, Volume 1 : $b A biographical record of all members of His Majesty's naval and military forces who have fallen in the war, The silent Baltic : $b or, Detained near Kiel). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"D501","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":75883,"title":"The Roll of Honour, Volume 1 : $b A biographical record of all members of His Majesty's naval and military forces who have fallen in the war","author":"Ruvigny et Raineval, Melville Henry Massue, marquis de","year":null,"download_count":28307,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/da":{"post":{"operationId":"da","summary":"Curated reading list on DA for tutoring agents, quiz generators, and reading apps — 1732 public-domain books (e.g. The L","description":"Curated reading list on DA for tutoring agents, quiz generators, and reading apps — 1732 public-domain books (e.g. The Love Letters of Henry VIII to Anne Boleyn; With Notes, The Diary of Samuel Pepys — Complete, Cornish Characters and Strange Events). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DA","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":32155,"title":"The Love Letters of Henry VIII to Anne Boleyn; With Notes","author":"Henry VIII, King of England","year":null,"download_count":38325,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/dc":{"post":{"operationId":"dc","summary":"Curated reading list on DC for tutoring agents, quiz generators, and reading apps — 564 public-domain books (e.g. The Wa","description":"Curated reading list on DC for tutoring agents, quiz generators, and reading apps — 564 public-domain books (e.g. The Waterloo Roll Call With Biographical Notes and Anecdotes, Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DC","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":51143,"title":"The Waterloo Roll Call With Biographical Notes and Anecdotes","author":"Dalton, Charles","year":null,"download_count":41633,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/detective-and-mystery-stories":{"post":{"operationId":"detective_and_mystery_stories","summary":"Curated reading list on Detective and mystery stories for tutoring agents, quiz generators, and reading apps — 899 publi","description":"Curated reading list on Detective and mystery stories for tutoring agents, quiz generators, and reading apps — 899 public-domain books (e.g. Crime and Punishment, The Green Mummy, The murder of Roger Ackroyd). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Detective and mystery stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2554,"title":"Crime and Punishment","author":"Dostoyevsky, Fyodor","year":null,"download_count":93752,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/detective-fiction":{"post":{"operationId":"detective_fiction","summary":"Curated shelf: Detective Fiction — 19 public-domain books including The Adventures of Sherlock Holmes, The Hound of the ","description":"Curated shelf: Detective Fiction — 19 public-domain books including The Adventures of Sherlock Holmes, The Hound of the Baskervilles, A Study in Scarlet. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Detective Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1661,"title":"The Adventures of Sherlock Holmes","author":"Doyle, Arthur Conan, 1859-1930","year":null,"download_count":23345,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/dg":{"post":{"operationId":"dg","summary":"Curated reading list on DG for tutoring agents, quiz generators, and reading apps — 259 public-domain books (e.g. The Li","description":"Curated reading list on DG for tutoring agents, quiz generators, and reading apps — 259 public-domain books (e.g. The Lives of the Twelve Caesars, Complete, Lorenzo de' Medici, the Magnificent (vol. 1 of 2), The dogaressas of Venice (the wives of the doges)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DG","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":6400,"title":"The Lives of the Twelve Caesars, Complete","author":"Suetonius","year":null,"download_count":35782,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/dh":{"post":{"operationId":"dh","summary":"Curated reading list on DH for tutoring agents, quiz generators, and reading apps — 133 public-domain books (e.g. Belgiu","description":"Curated reading list on DH for tutoring agents, quiz generators, and reading apps — 133 public-domain books (e.g. Belgium: From the Roman Invasion to the Present Day, The Spell of Flanders An Outline of the History, Legends and Art of Belgium's Famous Northern Provinces, The Story of Brussels). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DH","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27442,"title":"Belgium: From the Roman Invasion to the Present Day","author":"Cammaerts, Emile","year":null,"download_count":9828,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/didactic-fiction":{"post":{"operationId":"didactic_fiction","summary":"Curated shelf: Didactic fiction — 15 public-domain books including The Picture of Dorian Gray, The Brothers Karamazov, U","description":"Curated shelf: Didactic fiction — 15 public-domain books including The Picture of Dorian Gray, The Brothers Karamazov, Uncle Tom's Cabin. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Didactic fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":174,"title":"The Picture of Dorian Gray","author":"Wilde, Oscar, 1854-1900","year":null,"download_count":16363,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/dime-novels":{"post":{"operationId":"dime_novels","summary":"Curated reading list on Dime novels for tutoring agents, quiz generators, and reading apps — 277 public-domain books (e.","description":"Curated reading list on Dime novels for tutoring agents, quiz generators, and reading apps — 277 public-domain books (e.g. Only a girl's love, The Mystery of a Turkish Bath, Addie's Husband; or, Through clouds to sunshine). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Dime novels","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":53416,"title":"Only a girl's love","author":"Garvice, Charles","year":null,"download_count":48001,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/domestic-fiction":{"post":{"operationId":"domestic_fiction","summary":"Curated reading list on Domestic fiction for tutoring agents, quiz generators, and reading apps — 335 public-domain book","description":"Curated reading list on Domestic fiction for tutoring agents, quiz generators, and reading apps — 335 public-domain books (e.g. Pride and Prejudice, Middlemarch, Sense and Sensibility). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Domestic fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/drugs-alcohol-pharmacology":{"post":{"operationId":"drugs_alcohol_pharmacology","summary":"Curated reading list on Drugs/Alcohol/Pharmacology for tutoring agents, quiz generators, and reading apps — 136 public-d","description":"Curated reading list on Drugs/Alcohol/Pharmacology for tutoring agents, quiz generators, and reading apps — 136 public-domain books (e.g. Confessions of an English Opium-Eater, Alcohol: A Dangerous and Unnecessary Medicine, How and Why What Medical Writers Say, Select Temperance Tracts). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Drugs/Alcohol/Pharmacology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2040,"title":"Confessions of an English Opium-Eater","author":"De Quincey, Thomas","year":null,"download_count":15006,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ds":{"post":{"operationId":"ds","summary":"Curated reading list on DS for tutoring agents, quiz generators, and reading apps — 823 public-domain books (e.g. Rizal'","description":"Curated reading list on DS for tutoring agents, quiz generators, and reading apps — 823 public-domain books (e.g. Rizal's own story of his life, In the forbidden land : $b an account of a journey into Tibet, capture by the Tibetan lamas and soldiers, imprisonment, torture and ultimate release, The Bābur-nāma in English (Memoirs of Bābur)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DS","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":48438,"title":"Rizal's own story of his life","author":"Rizal, José","year":null,"download_count":42428,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/dt":{"post":{"operationId":"dt","summary":"Curated reading list on DT for tutoring agents, quiz generators, and reading apps — 424 public-domain books (e.g. Surgic","description":"Curated reading list on DT for tutoring agents, quiz generators, and reading apps — 424 public-domain books (e.g. Surgical Experiences in South Africa, 1899-1900 Being Mainly a Clinical Study of the Nature and Effects of Injuries Produced by Bullets of Small Calibre). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DT","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21280,"title":"Surgical Experiences in South Africa, 1899-1900 Being Mainly a Clinical Study of the Nature and Effects of Injuries Produced by Bullets of Small Calibre","author":"Makins, George Henry","year":null,"download_count":16027,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/du":{"post":{"operationId":"du","summary":"Curated reading list on DU for tutoring agents, quiz generators, and reading apps — 217 public-domain books (e.g. The Pa","description":"Curated reading list on DU for tutoring agents, quiz generators, and reading apps — 217 public-domain books (e.g. The Part Borne by the Dutch in the Discovery of Australia 1606-1765, The History of Tasmania , Volume II, History of Australia and New Zealand from 1606 to 1890). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"DU","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":17450,"title":"The Part Borne by the Dutch in the Discovery of Australia 1606-1765","author":"Heeres, J. E. (Jan Ernst)","year":null,"download_count":10238,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/e011":{"post":{"operationId":"e011","summary":"Curated reading list on E011 for tutoring agents, quiz generators, and reading apps — 524 public-domain books (e.g. Narr","description":"Curated reading list on E011 for tutoring agents, quiz generators, and reading apps — 524 public-domain books (e.g. Narrative of the Captivity and Restoration of Mrs. Mary Rowlandson, The Black Hawk War Including a Review of Black Hawk's Life, The Myth of Hiawatha, and Other Oral Legends, Mythologic and Allegoric, of the North American Indians). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"E011","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":851,"title":"Narrative of the Captivity and Restoration of Mrs. Mary Rowlandson","author":"Rowlandson, Mary White","year":null,"download_count":29301,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/e151":{"post":{"operationId":"e151","summary":"Curated reading list on E151 for tutoring agents, quiz generators, and reading apps — 466 public-domain books (e.g. Up f","description":"Curated reading list on E151 for tutoring agents, quiz generators, and reading apps — 466 public-domain books (e.g. Up from Slavery: An Autobiography, History of the Negro Race in America from 1619 to 1880. Vol. 2 Negroes as Slaves, as Soldiers, and as Citizens, Darkwater: Voices from Within the Veil). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"E151","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2376,"title":"Up from Slavery: An Autobiography","author":"Washington, Booker T.","year":null,"download_count":16449,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/e300":{"post":{"operationId":"e300","summary":"Curated reading list on E300 for tutoring agents, quiz generators, and reading apps — 451 public-domain books (e.g. Narr","description":"Curated reading list on E300 for tutoring agents, quiz generators, and reading apps — 451 public-domain books (e.g. Narrative of the Life of Frederick Douglass, an American Slave, Autobiography of Benjamin Franklin, Incidents in the Life of a Slave Girl, Written by Herself). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"E300","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23,"title":"Narrative of the Life of Frederick Douglass, an American Slave","author":"Douglass, Frederick","year":null,"download_count":50171,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/e456":{"post":{"operationId":"e456","summary":"Curated reading list on E456 for tutoring agents, quiz generators, and reading apps — 551 public-domain books (e.g. Swor","description":"Curated reading list on E456 for tutoring agents, quiz generators, and reading apps — 551 public-domain books (e.g. Sword and Pen Ventures and Adventures of Willard Glazier, Lincoln's Birthday : $b a comprehensive view of Lincoln as given in the most noteworthy essays, orations and poems, in fiction and in Lincoln's own writings). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"E456","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":28152,"title":"Sword and Pen Ventures and Adventures of Willard Glazier","author":"Owens, John Algernon","year":null,"download_count":12591,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/economics":{"post":{"operationId":"economics","summary":"Curated reading list on Economics for tutoring agents, quiz generators, and reading apps — 355 public-domain books (e.g.","description":"Curated reading list on Economics for tutoring agents, quiz generators, and reading apps — 355 public-domain books (e.g. Reminiscences of a Stock Operator, Fifty years in Wall Street, The Crown of Wild Olive also Munera Pulveris; Pre-Raphaelitism; Aratra Pentelici; The Ethics of the Dust; Fiction, Fair and Foul; The Elements of Drawing). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Economics","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":60979,"title":"Reminiscences of a Stock Operator","author":"Lefevre, Edwin","year":null,"download_count":27673,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/encyclopedias-and-dictionaries":{"post":{"operationId":"encyclopedias_and_dictionaries","summary":"Curated reading list on Encyclopedias and dictionaries for tutoring agents, quiz generators, and reading apps — 149 publ","description":"Curated reading list on Encyclopedias and dictionaries for tutoring agents, quiz generators, and reading apps — 149 public-domain books (e.g. Encyclopaedia Britannica, 11th Edition, \"Banks\" to \"Bassoon\" Volume 3, Part 1, Slice 3, Encyclopaedia Britannica, 11th Edition, \"Austria, Lower\" to \"Bacon\" Volume 3, Part 1, Slice 1). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Encyclopedias and dictionaries","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27480,"title":"Encyclopaedia Britannica, 11th Edition, \"Banks\" to \"Bassoon\" Volume 3, Part 1, Slice 3","author":"Various","year":null,"download_count":6774,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/encyclopedias-dictionaries-reference":{"post":{"operationId":"encyclopedias_dictionaries_reference","summary":"Curated reading list on Encyclopedias/Dictionaries/Reference for tutoring agents, quiz generators, and reading apps — 10","description":"Curated reading list on Encyclopedias/Dictionaries/Reference for tutoring agents, quiz generators, and reading apps — 1006 public-domain books (e.g. Modern English biography, volume 2 (of 4), I-Q, The 2006 CIA World Factbook, Modern English biography, volume 1 (of 4), A-H). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Encyclopedias/Dictionaries/Reference","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":71046,"title":"Modern English biography, volume 2 (of 4), I-Q","author":"Boase, Frederic","year":null,"download_count":74682,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/engineering-technology":{"post":{"operationId":"engineering_technology","summary":"Curated reading list on Engineering & Technology for tutoring agents, quiz generators, and reading apps — 912 public-dom","description":"Curated reading list on Engineering & Technology for tutoring agents, quiz generators, and reading apps — 912 public-domain books (e.g. Color Images from Mars Rovers Spirit and Opportunity, Concrete Construction: Methods and Costs, The Notebooks of Leonardo Da Vinci — Complete). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Engineering & Technology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":12082,"title":"Color Images from Mars Rovers Spirit and Opportunity","author":"Webster, Bob","year":null,"download_count":23375,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/england-fiction":{"post":{"operationId":"england_fiction","summary":"Curated reading list on England -- Fiction for tutoring agents, quiz generators, and reading apps — 453 public-domain bo","description":"Curated reading list on England -- Fiction for tutoring agents, quiz generators, and reading apps — 453 public-domain books (e.g. Pride and Prejudice, A Room with a View, Middlemarch). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"England -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/england-periodicals":{"post":{"operationId":"england_periodicals","summary":"Curated reading list on England -- Periodicals for tutoring agents, quiz generators, and reading apps — 137 public-domai","description":"Curated reading list on England -- Periodicals for tutoring agents, quiz generators, and reading apps — 137 public-domain books (e.g. Blackwood's Edinburgh magazine, volume 456, no. 10, October 1853, Blackwood's Edinburgh Magazine, Volume 62, No. 382, August 1847, Blackwood's Edinburgh Magazine, Volume 57, No. 356, June, 1845). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"England -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":78090,"title":"Blackwood's Edinburgh magazine, volume 456, no. 10, October 1853","author":"Various","year":null,"download_count":12026,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/england-social-life-and-customs-19th-century-fiction":{"post":{"operationId":"england_social_life_and_customs_19th_century_fiction","summary":"Curated reading list on England -- Social life and customs -- 19th century -- Fiction for tutoring agents, quiz generato","description":"Curated reading list on England -- Social life and customs -- 19th century -- Fiction for tutoring agents, quiz generators, and reading apps — 252 public-domain books (e.g. Sense and Sensibility, Sense and Sensibility, Northanger Abbey). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"England -- Social life and customs -- 19th century -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21839,"title":"Sense and Sensibility","author":"Austen, Jane","year":null,"download_count":73937,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/england-social-life-and-customs-fiction":{"post":{"operationId":"england_social_life_and_customs_fiction","summary":"Curated reading list on England -- Social life and customs -- Fiction for tutoring agents, quiz generators, and reading ","description":"Curated reading list on England -- Social life and customs -- Fiction for tutoring agents, quiz generators, and reading apps — 226 public-domain books (e.g. The Complete Project Gutenberg Works of Jane Austen A Linked Index of all PG Editions of Jane Austen, Major Vigoureux, A Sheaf of Corn). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"England -- Social life and customs -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":31100,"title":"The Complete Project Gutenberg Works of Jane Austen A Linked Index of all PG Editions of Jane Austen","author":"Austen, Jane","year":null,"download_count":46380,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/english-fiction-19th-century":{"post":{"operationId":"english_fiction_19th_century","summary":"Curated reading list on English fiction -- 19th century for tutoring agents, quiz generators, and reading apps — 438 pub","description":"Curated reading list on English fiction -- 19th century for tutoring agents, quiz generators, and reading apps — 438 public-domain books (e.g. Complete Short Works of George Meredith, The Amazing Marriage — Complete, Alice, or the Mysteries — Complete). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"English fiction -- 19th century","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":4499,"title":"Complete Short Works of George Meredith","author":"Meredith, George","year":null,"download_count":33405,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/english-fiction-20th-century":{"post":{"operationId":"english_fiction_20th_century","summary":"Curated reading list on English fiction -- 20th century for tutoring agents, quiz generators, and reading apps — 132 pub","description":"Curated reading list on English fiction -- 20th century for tutoring agents, quiz generators, and reading apps — 132 public-domain books (e.g. Landscape with figures, Moon of madness, Paul the minstrel, and other stories). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"English fiction -- 20th century","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76764,"title":"Landscape with figures","author":"Fraser, Ronald","year":null,"download_count":11826,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/english-poetry-19th-century":{"post":{"operationId":"english_poetry_19th_century","summary":"Curated reading list on English poetry -- 19th century for tutoring agents, quiz generators, and reading apps — 135 publ","description":"Curated reading list on English poetry -- 19th century for tutoring agents, quiz generators, and reading apps — 135 public-domain books (e.g. Poetical Works of Matthew Arnold, Victorian Songs: Lyrics of the Affections and Nature, The Defence of Guenevere and Other Poems). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"English poetry -- 19th century","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27739,"title":"Poetical Works of Matthew Arnold","author":"Arnold, Matthew","year":null,"download_count":9694,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/english-poetry":{"post":{"operationId":"english_poetry","summary":"Curated reading list on English poetry for tutoring agents, quiz generators, and reading apps — 211 public-domain books ","description":"Curated reading list on English poetry for tutoring agents, quiz generators, and reading apps — 211 public-domain books (e.g. The Home Book of Verse — Volume 2, Childe Harold's Pilgrimage, Shakespeare's Sonnets). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"English poetry","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2620,"title":"The Home Book of Verse — Volume 2","author":"Stevenson, Burton Egbert","year":null,"download_count":33846,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/english-wit-and-humor-periodicals":{"post":{"operationId":"english_wit_and_humor_periodicals","summary":"Curated reading list on English wit and humor -- Periodicals for tutoring agents, quiz generators, and reading apps — 55","description":"Curated reading list on English wit and humor -- Periodicals for tutoring agents, quiz generators, and reading apps — 556 public-domain books (e.g. Punch, or the London Charivari, Volume 99, July 19, 1890, The Tatler, Volume 4, Punch, or the London Charivari, Volume 1, Complete). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"English wit and humor -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11919,"title":"Punch, or the London Charivari, Volume 99, July 19, 1890","author":"Various","year":null,"download_count":1659,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/environmental-issues":{"post":{"operationId":"environmental_issues","summary":"Curated reading list on Environmental Issues for tutoring agents, quiz generators, and reading apps — 461 public-domain ","description":"Curated reading list on Environmental Issues for tutoring agents, quiz generators, and reading apps — 461 public-domain books (e.g. Wealth of the World's Waste Places and Oceania, Devon, Its Moorlands, Streams and Coasts, The Origin of Species by Means of Natural Selection Or, the Preservation of Favoured Races in the Struggle for Life, 6th Edition). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Environmental Issues","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23546,"title":"Wealth of the World's Waste Places and Oceania","author":"Gilson, Jewett C. (Jewett Castello)","year":null,"download_count":10338,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/erotic-fiction":{"post":{"operationId":"erotic_fiction","summary":"Curated shelf: Erotic Fiction — 9 public-domain books including Ulysses, The Romance of Lust: A classic Victorian erotic","description":"Curated shelf: Erotic Fiction — 9 public-domain books including Ulysses, The Romance of Lust: A classic Victorian erotic novel, The Kama Sutra of Vatsyayana\r\nTranslated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Erotic Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":4300,"title":"Ulysses","author":"Joyce, James, 1882-1941","year":null,"download_count":9860,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/essays-letters-speeches":{"post":{"operationId":"essays_letters_speeches","summary":"Curated reading list on Essays, Letters & Speeches for tutoring agents, quiz generators, and reading apps — 4501 public-","description":"Curated reading list on Essays, Letters & Speeches for tutoring agents, quiz generators, and reading apps — 4501 public-domain books (e.g. The Love Letters of Mary Wollstonecraft to Gilbert Imlay, The Expedition of Humphry Clinker, Selected Works of Voltairine de Cleyre). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Essays, Letters & Speeches","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":34413,"title":"The Love Letters of Mary Wollstonecraft to Gilbert Imlay","author":"Wollstonecraft, Mary","year":null,"download_count":77483,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/essays":{"post":{"operationId":"essays","summary":"Curated reading list on Essays for tutoring agents, quiz generators, and reading apps — 209 public-domain books (e.g. Lo","description":"Curated reading list on Essays for tutoring agents, quiz generators, and reading apps — 209 public-domain books (e.g. Love and Freindship [sic], The Will to Believe, and Other Essays in Popular Philosophy, On the Old Road, Vol. 2 (of 2) A Collection of Miscellaneous Essays and Articles on Art and Literature). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Essays","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1212,"title":"Love and Freindship [sic]","author":"Austen, Jane","year":null,"download_count":32226,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/f001":{"post":{"operationId":"f001","summary":"Curated reading list on F001 for tutoring agents, quiz generators, and reading apps — 170 public-domain books (e.g. A Pi","description":"Curated reading list on F001 for tutoring agents, quiz generators, and reading apps — 170 public-domain books (e.g. A Pickle for the Knowing Ones, Sketches of Successful New Hampshire Men, Bradford's History of 'Plimoth Plantation' From the Original Manuscript. With a Report of the Proceedings Incident to the Return of the Manuscript to Massachusetts). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"F001","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":43453,"title":"A Pickle for the Knowing Ones","author":"Dexter, Timothy","year":null,"download_count":42818,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/f1001":{"post":{"operationId":"f1001","summary":"Curated reading list on F1001 for tutoring agents, quiz generators, and reading apps — 280 public-domain books (e.g. A C","description":"Curated reading list on F1001 for tutoring agents, quiz generators, and reading apps — 280 public-domain books (e.g. A Cyclopaedia of Canadian Biography: Being Chiefly Men of the Time A Collection of Persons Distinguished in Professional and Political Life, Leaders in the Commerce and Industry of Canada, and Successful Pioneers). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"F1001","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":57724,"title":"A Cyclopaedia of Canadian Biography: Being Chiefly Men of the Time A Collection of Persons Distinguished in Professional and Political Life, Leaders in the Commerce and Industry of Canada, and Successful Pioneers","author":"Unknown","year":null,"download_count":21783,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/f106":{"post":{"operationId":"f106","summary":"Curated reading list on F106 for tutoring agents, quiz generators, and reading apps — 176 public-domain books (e.g. Wash","description":"Curated reading list on F106 for tutoring agents, quiz generators, and reading apps — 176 public-domain books (e.g. Washington Confidential, As I Remember Recollections of American Society during the Nineteenth Century, The Johnstown Horror!!! or, Valley of Death, being A Complete and Thrilling Account of the Awful Floods and Their Appalling Ruin). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"F106","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":63469,"title":"Washington Confidential","author":"Lait, Jack","year":null,"download_count":26384,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/f206":{"post":{"operationId":"f206","summary":"Curated reading list on F206 for tutoring agents, quiz generators, and reading apps — 133 public-domain books (e.g. Sand","description":"Curated reading list on F206 for tutoring agents, quiz generators, and reading apps — 133 public-domain books (e.g. Sandhills sketches, Blue Ridge Country, Plantation sketches). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"F206","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":78048,"title":"Sandhills sketches","author":"Haynes, Williams","year":null,"download_count":11741,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/f590-3":{"post":{"operationId":"f590_3","summary":"Curated reading list on F590.3 for tutoring agents, quiz generators, and reading apps — 173 public-domain books (e.g. Ol","description":"Curated reading list on F590.3 for tutoring agents, quiz generators, and reading apps — 173 public-domain books (e.g. Old Times on the Upper Mississippi The Recollections of a Steamboat Pilot from 1854 to 1863, Fifty Years In The Northwest With An Introduction And Appendix Containing Reminiscences, Incidents And Notes). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"F590.3","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":47262,"title":"Old Times on the Upper Mississippi The Recollections of a Steamboat Pilot from 1854 to 1863","author":"Merrick, George Byron","year":null,"download_count":19383,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/f850-5":{"post":{"operationId":"f850_5","summary":"Curated reading list on F850.5 for tutoring agents, quiz generators, and reading apps — 189 public-domain books (e.g. Ly","description":"Curated reading list on F850.5 for tutoring agents, quiz generators, and reading apps — 189 public-domain books (e.g. Lyman's History of old Walla Walla County, Vol. 2 Embracing Walla Walla, Columbia, Garfield and Asotin counties, Complete Story of the San Francisco Horror, A Woman who went to Alaska). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"F850.5","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":46808,"title":"Lyman's History of old Walla Walla County, Vol. 2 Embracing Walla Walla, Columbia, Garfield and Asotin counties","author":"Lyman, William Denison","year":null,"download_count":18555,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/fairy-tales":{"post":{"operationId":"fairy_tales","summary":"Curated reading list on Fairy tales for tutoring agents, quiz generators, and reading apps — 346 public-domain books (e.","description":"Curated reading list on Fairy tales for tutoring agents, quiz generators, and reading apps — 346 public-domain books (e.g. The Thousand and One Nights, Vol. I. Commonly Called the Arabian Nights' Entertainments, Andersen's Fairy Tales, The Adventures of Pinocchio). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Fairy tales","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":34206,"title":"The Thousand and One Nights, Vol. I. Commonly Called the Arabian Nights' Entertainments","author":"Unknown","year":null,"download_count":20036,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/families-fiction":{"post":{"operationId":"families_fiction","summary":"Curated reading list on Families -- Fiction for tutoring agents, quiz generators, and reading apps — 257 public-domain b","description":"Curated reading list on Families -- Fiction for tutoring agents, quiz generators, and reading apps — 257 public-domain books (e.g. The porcelain mask : $b A detective story, The Corbin necklace, Glory of Youth). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Families -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":77022,"title":"The porcelain mask : $b A detective story","author":"Chichester, John Jay","year":null,"download_count":11617,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/families-juvenile-fiction":{"post":{"operationId":"families_juvenile_fiction","summary":"Curated reading list on Families -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 216 public","description":"Curated reading list on Families -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 216 public-domain books (e.g. The strange house : $b or, A moment's mistake, Uncle Rutherford's Nieces: A Story for Girls, Jerry's Charge Account). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Families -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76759,"title":"The strange house : $b or, A moment's mistake","author":"Shaw, Catharine","year":null,"download_count":11827,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/family-juvenile-fiction":{"post":{"operationId":"family_juvenile_fiction","summary":"Curated reading list on Family -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 158 public-d","description":"Curated reading list on Family -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 158 public-domain books (e.g. The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House, Queensland Cousins, Patty's Success). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Family -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":38983,"title":"The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House","author":"Frey, Hildegard G.","year":null,"download_count":37267,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/fantasy-fiction":{"post":{"operationId":"fantasy_fiction","summary":"Curated reading list on Fantasy fiction for tutoring agents, quiz generators, and reading apps — 384 public-domain books","description":"Curated reading list on Fantasy fiction for tutoring agents, quiz generators, and reading apps — 384 public-domain books (e.g. Alice's Adventures in Wonderland, At the mountains of madness, The Man Who Was Thursday: A Nightmare). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Fantasy fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11,"title":"Alice's Adventures in Wonderland","author":"Carroll, Lewis","year":null,"download_count":82955,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/fantasy-literature":{"post":{"operationId":"fantasy_literature","summary":"Curated reading list on Fantasy literature for tutoring agents, quiz generators, and reading apps — 137 public-domain bo","description":"Curated reading list on Fantasy literature for tutoring agents, quiz generators, and reading apps — 137 public-domain books (e.g. The Wonderful Wizard of Oz, Peter Pan : $b [Peter and Wendy], The Wonderful Wizard of Oz). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Fantasy literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":55,"title":"The Wonderful Wizard of Oz","author":"Baum, L. Frank (Lyman Frank)","year":null,"download_count":34120,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/fantasy":{"post":{"operationId":"fantasy","summary":"Curated shelf: Fantasy — 8 public-domain books including The Wonderful Wizard of Oz, Le Morte d'Arthur: Volume 1, The Le","description":"Curated shelf: Fantasy — 8 public-domain books including The Wonderful Wizard of Oz, Le Morte d'Arthur: Volume 1, The Legends of King Arthur and His Knights. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Fantasy","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":55,"title":"The Wonderful Wizard of Oz","author":"Baum, L. Frank (Lyman Frank), 1856-1919","year":null,"download_count":10380,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/fathers-and-daughters-fiction":{"post":{"operationId":"fathers_and_daughters_fiction","summary":"Curated shelf: Fathers and daughters -- Fiction — 9 public-domain books including Jane Eyre: An Autobiography, Emma, Sil","description":"Curated shelf: Fathers and daughters -- Fiction — 9 public-domain books including Jane Eyre: An Autobiography, Emma, Silas Marner. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Fathers and daughters -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1260,"title":"Jane Eyre: An Autobiography","author":"Brontë, Charlotte, 1816-1855","year":null,"download_count":16805,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/fiction":{"post":{"operationId":"fiction","summary":"Curated reading list on Fiction for tutoring agents, quiz generators, and reading apps — 1389 public-domain books (e.g. ","description":"Curated reading list on Fiction for tutoring agents, quiz generators, and reading apps — 1389 public-domain books (e.g. The Green Mummy, Twenty-Five Ghost Stories, The Lock and Key Library: Classic Mystery and Detective Stories: Modern English). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2868,"title":"The Green Mummy","author":"Hume, Fergus","year":null,"download_count":63760,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/folklore":{"post":{"operationId":"folklore","summary":"Curated shelf: Folklore — 8 public-domain books including The Aesop for Children\r\nWith pictures by Milo Winter, The Blue","description":"Curated shelf: Folklore — 8 public-domain books including The Aesop for Children\r\nWith pictures by Milo Winter, The Blue Fairy Book, Myths and Legends of China. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Folklore","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":19994,"title":"The Aesop for Children\r\nWith pictures by Milo Winter","author":"Aesop, 621? BCE-565? BCE","year":null,"download_count":1713,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/french-fiction-translations-into-english":{"post":{"operationId":"french_fiction_translations_into_english","summary":"Curated reading list on French fiction -- Translations into English for tutoring agents, quiz generators, and reading ap","description":"Curated reading list on French fiction -- Translations into English for tutoring agents, quiz generators, and reading apps — 254 public-domain books (e.g. Eloisa : $b or, A series of original letters, Mademoiselle de Maupin, Volume 1 (of 2), The Red Lily — Complete). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"French fiction -- Translations into English","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76639,"title":"Eloisa : $b or, A series of original letters","author":"Rousseau, Jean-Jacques","year":null,"download_count":38454,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/french-literature":{"post":{"operationId":"french_literature","summary":"Curated reading list on French Literature for tutoring agents, quiz generators, and reading apps — 1293 public-domain bo","description":"Curated reading list on French Literature for tutoring agents, quiz generators, and reading apps — 1293 public-domain books (e.g. The Count of Monte Cristo, Carmen, The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"French Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1184,"title":"The Count of Monte Cristo","author":"Dumas, Alexandre","year":null,"download_count":77916,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/friendship-juvenile-fiction":{"post":{"operationId":"friendship_juvenile_fiction","summary":"Curated reading list on Friendship -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 469 publ","description":"Curated reading list on Friendship -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 469 public-domain books (e.g. Rinkitink in Oz, George at the Fort; Or, Life Among the Soldiers, Dorothy and the Wizard in Oz). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Friendship -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25581,"title":"Rinkitink in Oz","author":"Baum, L. Frank (Lyman Frank)","year":null,"download_count":10289,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/g":{"post":{"operationId":"g","summary":"Curated reading list on G for tutoring agents, quiz generators, and reading apps — 439 public-domain books (e.g. The 200","description":"Curated reading list on G for tutoring agents, quiz generators, and reading apps — 439 public-domain books (e.g. The 2006 CIA World Factbook, The 2003 CIA World Factbook, The Travels of Marco Polo — Volume 1). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"G","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27509,"title":"The 2006 CIA World Factbook","author":"United States. Central Intelligence Agency","year":null,"download_count":43777,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/gender-sexuality-studies":{"post":{"operationId":"gender_sexuality_studies","summary":"Curated reading list on Gender & Sexuality Studies for tutoring agents, quiz generators, and reading apps — 486 public-d","description":"Curated reading list on Gender & Sexuality Studies for tutoring agents, quiz generators, and reading apps — 486 public-domain books (e.g. Eighty Years and More; Reminiscences 1815-1897, Susan B. Anthony Rebel, Crusader, Humanitarian, My own story). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Gender & Sexuality Studies","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11982,"title":"Eighty Years and More; Reminiscences 1815-1897","author":"Stanton, Elizabeth Cady","year":null,"download_count":30512,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/german-fiction-translations-into-english":{"post":{"operationId":"german_fiction_translations_into_english","summary":"Curated reading list on German fiction -- Translations into English for tutoring agents, quiz generators, and reading ap","description":"Curated reading list on German fiction -- Translations into English for tutoring agents, quiz generators, and reading apps — 244 public-domain books (e.g. The Goose Man, The magic ring, Vol. 1 (of 3), The magic ring, Vol. 3 (of 3)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"German fiction -- Translations into English","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25345,"title":"The Goose Man","author":"Wassermann, Jakob","year":null,"download_count":13917,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/german-literature":{"post":{"operationId":"german_literature","summary":"Curated reading list on German Literature for tutoring agents, quiz generators, and reading apps — 369 public-domain boo","description":"Curated reading list on German Literature for tutoring agents, quiz generators, and reading apps — 369 public-domain books (e.g. The Sorrows of Young Werther, Erotica Romana, Undine). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"German Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2527,"title":"The Sorrows of Young Werther","author":"Goethe, Johann Wolfgang von","year":null,"download_count":35952,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ghost-stories":{"post":{"operationId":"ghost_stories","summary":"Curated shelf: Ghost stories — 8 public-domain books including A Christmas Carol in Prose; Being a Ghost Story of Christ","description":"Curated shelf: Ghost stories — 8 public-domain books including A Christmas Carol in Prose; Being a Ghost Story of Christmas, A Christmas Carol, The Turn of the Screw. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Ghost stories","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":46,"title":"A Christmas Carol in Prose; Being a Ghost Story of Christmas","author":"Dickens, Charles, 1812-1870","year":null,"download_count":70650,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/girls-juvenile-fiction":{"post":{"operationId":"girls_juvenile_fiction","summary":"Curated reading list on Girls -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 290 public-do","description":"Curated reading list on Girls -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 290 public-domain books (e.g. Six Girls: A Home Story, Polly's Business Venture, A Modern Tomboy: A Story for Girls). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Girls -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25551,"title":"Six Girls: A Home Story","author":"Irving, Fannie Belle","year":null,"download_count":9660,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/gothic-fiction":{"post":{"operationId":"gothic_fiction","summary":"Curated shelf: Gothic Fiction — 19 public-domain books including Frankenstein; or, the modern prometheus, The strange ca","description":"Curated shelf: Gothic Fiction — 19 public-domain books including Frankenstein; or, the modern prometheus, The strange case of Dr. Jekyll and Mr. Hyde, The Picture of Dorian Gray. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Gothic Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft, 1797-1851","year":null,"download_count":56171,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/gr":{"post":{"operationId":"gr","summary":"Curated reading list on GR for tutoring agents, quiz generators, and reading apps — 256 public-domain books (e.g. Hero-M","description":"Curated reading list on GR for tutoring agents, quiz generators, and reading apps — 256 public-domain books (e.g. Hero-Myths & Legends of the British Race, Italian Popular Tales, Folklore as an Historical Science). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"GR","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25502,"title":"Hero-Myths & Legends of the British Race","author":"Ebbutt, M. I. (Maud Isabel)","year":null,"download_count":13635,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/gv":{"post":{"operationId":"gv","summary":"Curated reading list on GV for tutoring agents, quiz generators, and reading apps — 292 public-domain books (e.g. Minute","description":"Curated reading list on GV for tutoring agents, quiz generators, and reading apps — 292 public-domain books (e.g. Minute Mysteries [Detectograms], A guide to the history of physical education, Auction of To-day). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"GV","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":50603,"title":"Minute Mysteries [Detectograms]","author":"Ripley, H. A. (Harold Austin)","year":null,"download_count":39292,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/harvard-classics":{"post":{"operationId":"harvard_classics","summary":"Curated reading list on Harvard Classics for tutoring agents, quiz generators, and reading apps — 146 public-domain book","description":"Curated reading list on Harvard Classics for tutoring agents, quiz generators, and reading apps — 146 public-domain books (e.g. Pride and Prejudice, Crime and Punishment, Meditations). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Harvard Classics","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/hd":{"post":{"operationId":"hd","summary":"Curated reading list on HD for tutoring agents, quiz generators, and reading apps — 191 public-domain books (e.g. Cartel","description":"Curated reading list on HD for tutoring agents, quiz generators, and reading apps — 191 public-domain books (e.g. Cartels : $b challenge to a free world, The Toilers of the Field, The Settlement of Wage Disputes). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"HD","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":78077,"title":"Cartels : $b challenge to a free world","author":"Berge, Wendell","year":null,"download_count":11803,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/he":{"post":{"operationId":"he","summary":"Curated reading list on HE for tutoring agents, quiz generators, and reading apps — 159 public-domain books (e.g. Ocean ","description":"Curated reading list on HE for tutoring agents, quiz generators, and reading apps — 159 public-domain books (e.g. Ocean Steam Navigation and the Ocean Post, A Hundred Years by Post: A Jubilee Retrospect, The story of the first trans-continental railroad : $b its projectors, construction, and history). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"HE","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25104,"title":"Ocean Steam Navigation and the Ocean Post","author":"Rainey, Thomas","year":null,"download_count":6262,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/health-medicine":{"post":{"operationId":"health_medicine","summary":"Curated reading list on Health & Medicine for tutoring agents, quiz generators, and reading apps — 1044 public-domain bo","description":"Curated reading list on Health & Medicine for tutoring agents, quiz generators, and reading apps — 1044 public-domain books (e.g. The Life of Florence Nightingale, vol. 2 of 2, Manual of Surgery Volume Second: Extremities—Head—Neck. Sixth Edition.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Health & Medicine","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":40058,"title":"The Life of Florence Nightingale, vol. 2 of 2","author":"Cook, Edward Tyas, Sir","year":null,"download_count":39948,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/historical-fiction":{"post":{"operationId":"historical_fiction","summary":"Curated reading list on Historical fiction for tutoring agents, quiz generators, and reading apps — 871 public-domain bo","description":"Curated reading list on Historical fiction for tutoring agents, quiz generators, and reading apps — 871 public-domain books (e.g. The Count of Monte Cristo, Middlemarch, Twenty years after). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Historical fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1184,"title":"The Count of Monte Cristo","author":"Dumas, Alexandre","year":null,"download_count":77916,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/historical-novels":{"post":{"operationId":"historical_novels","summary":"Curated reading list on Historical Novels for tutoring agents, quiz generators, and reading apps — 3891 public-domain bo","description":"Curated reading list on Historical Novels for tutoring agents, quiz generators, and reading apps — 3891 public-domain books (e.g. The Lady of the Lake, Twenty years after, Under the Red Dragon: A Novel). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Historical Novels","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":3011,"title":"The Lady of the Lake","author":"Scott, Walter","year":null,"download_count":65496,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-american":{"post":{"operationId":"history_american","summary":"Curated reading list on History - American for tutoring agents, quiz generators, and reading apps — 4832 public-domain b","description":"Curated reading list on History - American for tutoring agents, quiz generators, and reading apps — 4832 public-domain books (e.g. Narrative of the Life of Frederick Douglass, an American Slave, Autobiography of Benjamin Franklin, Life on the Mississippi). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - American","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23,"title":"Narrative of the Life of Frederick Douglass, an American Slave","author":"Douglass, Frederick","year":null,"download_count":50171,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-ancient":{"post":{"operationId":"history_ancient","summary":"Curated reading list on History - Ancient for tutoring agents, quiz generators, and reading apps — 1063 public-domain bo","description":"Curated reading list on History - Ancient for tutoring agents, quiz generators, and reading apps — 1063 public-domain books (e.g. The City of God, Volume I, The Anabasis of Alexander : $b or, The history of the wars and conquests of Alexander the Great, The Lives of the Twelve Caesars, Complete). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Ancient","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":45304,"title":"The City of God, Volume I","author":"Augustine, of Hippo, Saint","year":null,"download_count":53828,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-british":{"post":{"operationId":"history_british","summary":"Curated reading list on History - British for tutoring agents, quiz generators, and reading apps — 3134 public-domain bo","description":"Curated reading list on History - British for tutoring agents, quiz generators, and reading apps — 3134 public-domain books (e.g. The Waterloo Roll Call With Biographical Notes and Anecdotes, A Little English Gallery, The Life of Florence Nightingale, vol. 2 of 2). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - British","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":51143,"title":"The Waterloo Roll Call With Biographical Notes and Anecdotes","author":"Dalton, Charles","year":null,"download_count":41633,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-early-modern-c-1450-1750":{"post":{"operationId":"history_early_modern_c_1450_1750","summary":"Curated reading list on History - Early Modern (c. 1450-1750) for tutoring agents, quiz generators, and reading apps — 1","description":"Curated reading list on History - Early Modern (c. 1450-1750) for tutoring agents, quiz generators, and reading apps — 1300 public-domain books (e.g. Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Early Modern (c. 1450-1750)","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37499,"title":"Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources","author":"Napoleon I, Emperor of the French","year":null,"download_count":40942,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-european":{"post":{"operationId":"history_european","summary":"Curated reading list on History - European for tutoring agents, quiz generators, and reading apps — 2567 public-domain b","description":"Curated reading list on History - European for tutoring agents, quiz generators, and reading apps — 2567 public-domain books (e.g. Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - European","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37499,"title":"Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources","author":"Napoleon I, Emperor of the French","year":null,"download_count":40942,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-medieval-middle-ages":{"post":{"operationId":"history_medieval_middle_ages","summary":"Curated reading list on History - Medieval/Middle Ages for tutoring agents, quiz generators, and reading apps — 637 publ","description":"Curated reading list on History - Medieval/Middle Ages for tutoring agents, quiz generators, and reading apps — 637 public-domain books (e.g. The Travels of Marco Polo — Volume 1, Bibliomania in the Middle Ages, An Introduction to the Industrial and Social History of England). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Medieval/Middle Ages","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":10636,"title":"The Travels of Marco Polo — Volume 1","author":"Polo, Marco","year":null,"download_count":22445,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-modern-1750":{"post":{"operationId":"history_modern_1750","summary":"Curated reading list on History - Modern (1750+) for tutoring agents, quiz generators, and reading apps — 5008 public-do","description":"Curated reading list on History - Modern (1750+) for tutoring agents, quiz generators, and reading apps — 5008 public-domain books (e.g. Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Modern (1750+)","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37499,"title":"Napoleon's Letters to Josephine, 1796-1812 For the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources","author":"Napoleon I, Emperor of the French","year":null,"download_count":40942,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-other":{"post":{"operationId":"history_other","summary":"Curated reading list on History - Other for tutoring agents, quiz generators, and reading apps — 2773 public-domain book","description":"Curated reading list on History - Other for tutoring agents, quiz generators, and reading apps — 2773 public-domain books (e.g. Rizal's own story of his life, The Memoirs of the Conquistador Bernal Diaz del Castillo, Vol 1 (of 2) Written by Himself Containing a True and Full Account of the Discovery and Conquest of Mexico and New Spain.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Other","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":48438,"title":"Rizal's own story of his life","author":"Rizal, José","year":null,"download_count":42428,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-religious":{"post":{"operationId":"history_religious","summary":"Curated reading list on History - Religious for tutoring agents, quiz generators, and reading apps — 1675 public-domain ","description":"Curated reading list on History - Religious for tutoring agents, quiz generators, and reading apps — 1675 public-domain books (e.g. Some Jewish Witnesses For Christ, Ancient States and Empires For Colleges and Schools, Royal Edinburgh: Her Saints, Kings, Prophets and Poets). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Religious","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37734,"title":"Some Jewish Witnesses For Christ","author":"Bernstein, Aaron","year":null,"download_count":39047,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-royalty":{"post":{"operationId":"history_royalty","summary":"Curated reading list on History - Royalty for tutoring agents, quiz generators, and reading apps — 688 public-domain boo","description":"Curated reading list on History - Royalty for tutoring agents, quiz generators, and reading apps — 688 public-domain books (e.g. The Love Letters of Henry VIII to Anne Boleyn; With Notes, Lorenzo de' Medici, the Magnificent (vol. 1 of 2)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Royalty","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":32155,"title":"The Love Letters of Henry VIII to Anne Boleyn; With Notes","author":"Henry VIII, King of England","year":null,"download_count":38325,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-schools-universities":{"post":{"operationId":"history_schools_universities","summary":"Curated reading list on History - Schools & Universities for tutoring agents, quiz generators, and reading apps — 285 pu","description":"Curated reading list on History - Schools & Universities for tutoring agents, quiz generators, and reading apps — 285 public-domain books (e.g. The Choctaw Freedmen and the Story of Oak Hill Industrial Academy, The Journal of Negro History, Volume 5, 1920, The University of Michigan). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Schools & Universities","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23321,"title":"The Choctaw Freedmen and the Story of Oak Hill Industrial Academy","author":"Flickinger, Robert Elliott","year":null,"download_count":13718,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/history-warfare":{"post":{"operationId":"history_warfare","summary":"Curated reading list on History - Warfare for tutoring agents, quiz generators, and reading apps — 2842 public-domain bo","description":"Curated reading list on History - Warfare for tutoring agents, quiz generators, and reading apps — 2842 public-domain books (e.g. The Anabasis of Alexander : $b or, The history of the wars and conquests of Alexander the Great, The Waterloo Roll Call With Biographical Notes and Anecdotes, A farewell to arms). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"History - Warfare","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":46976,"title":"The Anabasis of Alexander : $b or, The history of the wars and conquests of Alexander the Great","author":"Arrian","year":null,"download_count":46244,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/holmes-sherlock-fictitious-character-fiction":{"post":{"operationId":"holmes_sherlock_fictitious_character_fiction","summary":"Curated shelf: Holmes, Sherlock (Fictitious character) -- Fiction — 8 public-domain books including The Adventures of Sh","description":"Curated shelf: Holmes, Sherlock (Fictitious character) -- Fiction — 8 public-domain books including The Adventures of Sherlock Holmes, The Hound of the Baskervilles, A Study in Scarlet. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Holmes, Sherlock (Fictitious character) -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1661,"title":"The Adventures of Sherlock Holmes","author":"Doyle, Arthur Conan, 1859-1930","year":null,"download_count":23345,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/home-missions-periodicals":{"post":{"operationId":"home_missions_periodicals","summary":"Curated reading list on Home missions -- Periodicals for tutoring agents, quiz generators, and reading apps — 145 public","description":"Curated reading list on Home missions -- Periodicals for tutoring agents, quiz generators, and reading apps — 145 public-domain books (e.g. The American Missionary — Volume 42, No. 03, March, 1888, The American Missionary — Volume 34, No. 7, July, 1880, The American Missionary — Volume 49, No. 03, March, 1895). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Home missions -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11764,"title":"The American Missionary — Volume 42, No. 03, March, 1888","author":"Various","year":null,"download_count":806,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/horror-tales-american":{"post":{"operationId":"horror_tales_american","summary":"Curated shelf: Horror tales, American — 8 public-domain books including The Masque of the Red Death, The Works of Edgar ","description":"Curated shelf: Horror tales, American — 8 public-domain books including The Masque of the Red Death, The Works of Edgar Allan Poe — Volume 2, The King in Yellow. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Horror tales, American","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1064,"title":"The Masque of the Red Death","author":"Poe, Edgar Allan, 1809-1849","year":null,"download_count":5793,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/horror-tales":{"post":{"operationId":"horror_tales","summary":"Curated reading list on Horror tales for tutoring agents, quiz generators, and reading apps — 148 public-domain books (e","description":"Curated reading list on Horror tales for tutoring agents, quiz generators, and reading apps — 148 public-domain books (e.g. Frankenstein; or, the modern prometheus, The Mysteries of Udolpho, Dracula). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Horror tales","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft","year":null,"download_count":75458,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/horror":{"post":{"operationId":"horror","summary":"Curated shelf: Horror — 20 public-domain books including The strange case of Dr. Jekyll and Mr. Hyde, Metamorphosis, Dra","description":"Curated shelf: Horror — 20 public-domain books including The strange case of Dr. Jekyll and Mr. Hyde, Metamorphosis, Dracula. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Horror","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":42,"title":"The strange case of Dr. Jekyll and Mr. Hyde","author":"Stevenson, Robert Louis, 1850-1894","year":null,"download_count":19761,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/how-to":{"post":{"operationId":"how_to","summary":"Curated reading list on How To ... for tutoring agents, quiz generators, and reading apps — 2208 public-domain books (e.","description":"Curated reading list on How To ... for tutoring agents, quiz generators, and reading apps — 2208 public-domain books (e.g. Studies of American Fungi. Mushrooms, Edible, Poisonous, etc.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"How To ...","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":26492,"title":"Studies of American Fungi. Mushrooms, Edible, Poisonous, etc.","author":"Atkinson, George Francis","year":null,"download_count":18806,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/hq":{"post":{"operationId":"hq","summary":"Curated reading list on HQ for tutoring agents, quiz generators, and reading apps — 381 public-domain books (e.g. The Ka","description":"Curated reading list on HQ for tutoring agents, quiz generators, and reading apps — 381 public-domain books (e.g. The Kama Sutra of Vatsyayana Translated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"HQ","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27827,"title":"The Kama Sutra of Vatsyayana Translated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks","author":"Vatsyayana","year":null,"download_count":35282,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/human-alien-encounters-fiction":{"post":{"operationId":"human_alien_encounters_fiction","summary":"Curated reading list on Human-alien encounters -- Fiction for tutoring agents, quiz generators, and reading apps — 454 p","description":"Curated reading list on Human-alien encounters -- Fiction for tutoring agents, quiz generators, and reading apps — 454 public-domain books (e.g. Triplanetary, This star shall be free, The Martian: A Novel). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Human-alien encounters -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":20782,"title":"Triplanetary","author":"Smith, E. E. (Edward Elmer)","year":null,"download_count":18723,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/humor":{"post":{"operationId":"humor","summary":"Curated reading list on Humor for tutoring agents, quiz generators, and reading apps — 161 public-domain books (e.g. The","description":"Curated reading list on Humor for tutoring agents, quiz generators, and reading apps — 161 public-domain books (e.g. The Man Upstairs and Other Stories, Miss Mapp, Comic History of the United States). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Humor","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":6768,"title":"The Man Upstairs and Other Stories","author":"Wodehouse, P. G. (Pelham Grenville)","year":null,"download_count":26011,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/humorous-stories":{"post":{"operationId":"humorous_stories","summary":"Curated reading list on Humorous stories for tutoring agents, quiz generators, and reading apps — 336 public-domain book","description":"Curated reading list on Humorous stories for tutoring agents, quiz generators, and reading apps — 336 public-domain books (e.g. A Room with a View, The Adventures of Tom Sawyer, Complete, History of Tom Jones, a Foundling). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Humorous stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2641,"title":"A Room with a View","author":"Forster, E. M. (Edward Morgan)","year":null,"download_count":101658,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/humour":{"post":{"operationId":"humour","summary":"Curated reading list on Humour for tutoring agents, quiz generators, and reading apps — 4010 public-domain books (e.g. T","description":"Curated reading list on Humour for tutoring agents, quiz generators, and reading apps — 4010 public-domain books (e.g. The Passionate Elopement, A Pickle for the Knowing Ones, The Expedition of Humphry Clinker). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Humour","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":38177,"title":"The Passionate Elopement","author":"MacKenzie, Compton","year":null,"download_count":43002,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/hv":{"post":{"operationId":"hv","summary":"Curated reading list on HV for tutoring agents, quiz generators, and reading apps — 383 public-domain books (e.g. Bidwel","description":"Curated reading list on HV for tutoring agents, quiz generators, and reading apps — 383 public-domain books (e.g. Bidwell's Travels, from Wall Street to London Prison: Fifteen Years in Solitude, Celebrated Crimes (Complete)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"HV","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":24739,"title":"Bidwell's Travels, from Wall Street to London Prison: Fifteen Years in Solitude","author":"Bidwell, Austin","year":null,"download_count":60600,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/indexes":{"post":{"operationId":"indexes","summary":"Curated reading list on Indexes for tutoring agents, quiz generators, and reading apps — 230 public-domain books (e.g. T","description":"Curated reading list on Indexes for tutoring agents, quiz generators, and reading apps — 230 public-domain books (e.g. The Works of Edgar Allan Poe, The Raven Edition Table Of Contents And Index Of The Five Volumes). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Indexes","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25525,"title":"The Works of Edgar Allan Poe, The Raven Edition Table Of Contents And Index Of The Five Volumes","author":"Poe, Edgar Allan","year":null,"download_count":17705,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/inheritance-and-succession-fiction":{"post":{"operationId":"inheritance_and_succession_fiction","summary":"Curated reading list on Inheritance and succession -- Fiction for tutoring agents, quiz generators, and reading apps — 2","description":"Curated reading list on Inheritance and succession -- Fiction for tutoring agents, quiz generators, and reading apps — 263 public-domain books (e.g. Sense and Sensibility, The Mysteries of Udolpho, The Woman in White). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Inheritance and succession -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21839,"title":"Sense and Sensibility","author":"Austen, Jane","year":null,"download_count":73937,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/italy":{"post":{"operationId":"italy","summary":"Curated shelf: Italy — 10 public-domain books including Divine Comedy, Longfellow's Translation, Hell, The divine comedy","description":"Curated shelf: Italy — 10 public-domain books including Divine Comedy, Longfellow's Translation, Hell, The divine comedy, The Divine Comedy by Dante, Illustrated, Paradise, Complete. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Italy","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1001,"title":"Divine Comedy, Longfellow's Translation, Hell","author":"Dante Alighieri, 1265-1321","year":null,"download_count":5785,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/journalism-media-writing":{"post":{"operationId":"journalism_media_writing","summary":"Curated reading list on Journalism/Media/Writing for tutoring agents, quiz generators, and reading apps — 693 public-dom","description":"Curated reading list on Journalism/Media/Writing for tutoring agents, quiz generators, and reading apps — 693 public-domain books (e.g. Washington Confidential, All in the Day's Work: An Autobiography, Impressions of a War Correspondent). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Journalism/Media/Writing","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":63469,"title":"Washington Confidential","author":"Lait, Jack","year":null,"download_count":26384,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/journals":{"post":{"operationId":"journals","summary":"Curated reading list on Journals for tutoring agents, quiz generators, and reading apps — 1421 public-domain books (e.g.","description":"Curated reading list on Journals for tutoring agents, quiz generators, and reading apps — 1421 public-domain books (e.g. The Journal of Negro History, Volume 6, 1921, Chambers's Journal of Popular Literature, Science, and Art, fifth series, no. 153, vol. III, December 4, 1886, The Journal of Negro History, Volume 3, 1918). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Journals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22149,"title":"The Journal of Negro History, Volume 6, 1921","author":"Various","year":null,"download_count":10987,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/language-communication":{"post":{"operationId":"language_communication","summary":"Curated reading list on Language & Communication for tutoring agents, quiz generators, and reading apps — 422 public-dom","description":"Curated reading list on Language & Communication for tutoring agents, quiz generators, and reading apps — 422 public-domain books (e.g. Chambers's Twentieth Century Dictionary (part 1 of 4: A-D), Moby Multiple Language Lists of Common Words, The Comic English Grammar: A New And Facetious Introduction To The English Tongue). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Language & Communication","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37683,"title":"Chambers's Twentieth Century Dictionary (part 1 of 4: A-D)","author":"Unknown","year":null,"download_count":20939,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/latter-day-saints":{"post":{"operationId":"latter_day_saints","summary":"Curated reading list on Latter Day Saints for tutoring agents, quiz generators, and reading apps — 130 public-domain boo","description":"Curated reading list on Latter Day Saints for tutoring agents, quiz generators, and reading apps — 130 public-domain books (e.g. Jesus the Christ A Study of the Messiah and His Mission According to Holy Scriptures Both Ancient and Modern, The Book of Mormon : $b an account written by the hand of Mormon, upon plates taken from the plates of Nephi). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Latter Day Saints","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22542,"title":"Jesus the Christ A Study of the Messiah and His Mission According to Holy Scriptures Both Ancient and Modern","author":"Talmage, James E. (James Edward)","year":null,"download_count":17276,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/law-criminology":{"post":{"operationId":"law_criminology","summary":"Curated reading list on Law & Criminology for tutoring agents, quiz generators, and reading apps — 527 public-domain boo","description":"Curated reading list on Law & Criminology for tutoring agents, quiz generators, and reading apps — 527 public-domain books (e.g. By Advice of Counsel, The Life of John Marshall, Volume 4: The building of the nation, 1815-1835, The Journal of Negro History, Volume 6, 1921). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Law & Criminology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11987,"title":"By Advice of Counsel","author":"Train, Arthur Cheney","year":null,"download_count":29402,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/lb":{"post":{"operationId":"lb","summary":"Curated reading list on LB for tutoring agents, quiz generators, and reading apps — 166 public-domain books (e.g. Ontari","description":"Curated reading list on LB for tutoring agents, quiz generators, and reading apps — 166 public-domain books (e.g. Ontario Teachers' Manuals: Nature Study, Democracy and Education: An Introduction to the Philosophy of Education, A Practical Enquiry into the Philosophy of Education). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"LB","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":26139,"title":"Ontario Teachers' Manuals: Nature Study","author":"Ontario. Department of Education","year":null,"download_count":7819,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/life-on-other-planets-fiction":{"post":{"operationId":"life_on_other_planets_fiction","summary":"Curated reading list on Life on other planets -- Fiction for tutoring agents, quiz generators, and reading apps — 154 pu","description":"Curated reading list on Life on other planets -- Fiction for tutoring agents, quiz generators, and reading apps — 154 public-domain books (e.g. The gods of Mars, Plague Ship, The war of the worlds). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Life on other planets -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":64,"title":"The gods of Mars","author":"Burroughs, Edgar Rice","year":null,"download_count":29142,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/literature-modern-19th-century-periodicals":{"post":{"operationId":"literature_modern_19th_century_periodicals","summary":"Curated reading list on Literature, Modern -- 19th century -- Periodicals for tutoring agents, quiz generators, and read","description":"Curated reading list on Literature, Modern -- 19th century -- Periodicals for tutoring agents, quiz generators, and reading apps — 189 public-domain books (e.g. The yellow book, an illustrated quarterly. Vol. 3, October, 1894, The International Monthly Magazine, Volume 5, No. 1, January, 1852). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Literature, Modern -- 19th century -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":78082,"title":"The yellow book, an illustrated quarterly. Vol. 3, October, 1894","author":"Unknown","year":null,"download_count":11870,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/london-england-fiction":{"post":{"operationId":"london_england_fiction","summary":"Curated reading list on London (England) -- Fiction for tutoring agents, quiz generators, and reading apps — 240 public-","description":"Curated reading list on London (England) -- Fiction for tutoring agents, quiz generators, and reading apps — 240 public-domain books (e.g. The strange case of Dr. Jekyll and Mr. Hyde, Oliver Twist, Vol. 2 (of 3), The Man Who Was Thursday: A Nightmare). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"London (England) -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":43,"title":"The strange case of Dr. Jekyll and Mr. Hyde","author":"Stevenson, Robert Louis","year":null,"download_count":57647,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/love-stories":{"post":{"operationId":"love_stories","summary":"Curated reading list on Love stories for tutoring agents, quiz generators, and reading apps — 823 public-domain books (e","description":"Curated reading list on Love stories for tutoring agents, quiz generators, and reading apps — 823 public-domain books (e.g. Pride and Prejudice, Middlemarch, Sense and Sensibility). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Love stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/man-woman-relationships-fiction":{"post":{"operationId":"man_woman_relationships_fiction","summary":"Curated reading list on Man-woman relationships -- Fiction for tutoring agents, quiz generators, and reading apps — 908 ","description":"Curated reading list on Man-woman relationships -- Fiction for tutoring agents, quiz generators, and reading apps — 908 public-domain books (e.g. What Will People Say? A Novel, Manon Lescaut, A farewell to arms). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Man-woman relationships -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":38311,"title":"What Will People Say? A Novel","author":"Hughes, Rupert","year":null,"download_count":43618,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/marriage-fiction":{"post":{"operationId":"marriage_fiction","summary":"Curated reading list on Marriage -- Fiction for tutoring agents, quiz generators, and reading apps — 136 public-domain b","description":"Curated reading list on Marriage -- Fiction for tutoring agents, quiz generators, and reading apps — 136 public-domain books (e.g. The Amazing Marriage — Complete, The Raft, Bambi). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Marriage -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":4488,"title":"The Amazing Marriage — Complete","author":"Meredith, George","year":null,"download_count":25218,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/married-people-fiction":{"post":{"operationId":"married_people_fiction","summary":"Curated reading list on Married people -- Fiction for tutoring agents, quiz generators, and reading apps — 141 public-do","description":"Curated reading list on Married people -- Fiction for tutoring agents, quiz generators, and reading apps — 141 public-domain books (e.g. Middlemarch, Jane Eyre: An Autobiography, The Secret Adversary). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Married people -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":145,"title":"Middlemarch","author":"Eliot, George","year":null,"download_count":75709,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/married-women-fiction":{"post":{"operationId":"married_women_fiction","summary":"Curated shelf: Married women -- Fiction — 10 public-domain books including The Scarlet Letter, Anna Karenina, Madame Bov","description":"Curated shelf: Married women -- Fiction — 10 public-domain books including The Scarlet Letter, Anna Karenina, Madame Bovary. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Married women -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":33,"title":"The Scarlet Letter","author":"Hawthorne, Nathaniel, 1804-1864","year":null,"download_count":22293,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/mars-planet-fiction":{"post":{"operationId":"mars_planet_fiction","summary":"Curated reading list on Mars (Planet) -- Fiction for tutoring agents, quiz generators, and reading apps — 150 public-dom","description":"Curated reading list on Mars (Planet) -- Fiction for tutoring agents, quiz generators, and reading apps — 150 public-domain books (e.g. Thuvia, maid of Mars, The gods of Mars, A princess of Mars). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Mars (Planet) -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":72,"title":"Thuvia, maid of Mars","author":"Burroughs, Edgar Rice","year":null,"download_count":43298,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/mate-selection-fiction":{"post":{"operationId":"mate_selection_fiction","summary":"Curated reading list on Mate selection -- Fiction for tutoring agents, quiz generators, and reading apps — 137 public-do","description":"Curated reading list on Mate selection -- Fiction for tutoring agents, quiz generators, and reading apps — 137 public-domain books (e.g. Sense and Sensibility, Sense and Sensibility, Infatuation). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Mate selection -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21839,"title":"Sense and Sensibility","author":"Austen, Jane","year":null,"download_count":73937,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ml":{"post":{"operationId":"ml","summary":"Curated reading list on ML for tutoring agents, quiz generators, and reading apps — 322 public-domain books (e.g. My Lif","description":"Curated reading list on ML for tutoring agents, quiz generators, and reading apps — 322 public-domain books (e.g. My Life — Volume 1, The Letters of Wolfgang Amadeus Mozart — Volume 01, Critical and Historical Essays Lectures delivered at Columbia University). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"ML","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":5197,"title":"My Life — Volume 1","author":"Wagner, Richard","year":null,"download_count":68850,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/movie-books":{"post":{"operationId":"movie_books","summary":"Curated shelf: Movie Books — 32 public-domain books including Frankenstein; or, the modern prometheus, The Scarlet Lette","description":"Curated shelf: Movie Books — 32 public-domain books including Frankenstein; or, the modern prometheus, The Scarlet Letter, The strange case of Dr. Jekyll and Mr. Hyde. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Movie Books","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft, 1797-1851","year":null,"download_count":56171,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/murder-investigation-fiction":{"post":{"operationId":"murder_investigation_fiction","summary":"Curated reading list on Murder -- Investigation -- Fiction for tutoring agents, quiz generators, and reading apps — 158 ","description":"Curated reading list on Murder -- Investigation -- Fiction for tutoring agents, quiz generators, and reading apps — 158 public-domain books (e.g. The murder of Roger Ackroyd, The Big Four, Whose Body? A Lord Peter Wimsey Novel). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Murder -- Investigation -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":69087,"title":"The murder of Roger Ackroyd","author":"Christie, Agatha","year":null,"download_count":56966,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/music":{"post":{"operationId":"music","summary":"Curated reading list on Music for tutoring agents, quiz generators, and reading apps — 494 public-domain books (e.g. My ","description":"Curated reading list on Music for tutoring agents, quiz generators, and reading apps — 494 public-domain books (e.g. My Life — Volume 1, The Letters of Wolfgang Amadeus Mozart — Volume 01, Cowboy songs, and other frontier ballads). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Music","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":5197,"title":"My Life — Volume 1","author":"Wagner, Richard","year":null,"download_count":68850,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/mystery-and-detective-stories":{"post":{"operationId":"mystery_and_detective_stories","summary":"Curated reading list on Mystery and detective stories for tutoring agents, quiz generators, and reading apps — 266 publi","description":"Curated reading list on Mystery and detective stories for tutoring agents, quiz generators, and reading apps — 266 public-domain books (e.g. The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar, The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House, Arsène Lupin intervenes). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Mystery and detective stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":6133,"title":"The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar","author":"Leblanc, Maurice","year":null,"download_count":75744,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/mystery-fiction":{"post":{"operationId":"mystery_fiction","summary":"Curated reading list on Mystery fiction for tutoring agents, quiz generators, and reading apps — 339 public-domain books","description":"Curated reading list on Mystery fiction for tutoring agents, quiz generators, and reading apps — 339 public-domain books (e.g. Dracula, The Woman in White, The Big Four). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Mystery fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":345,"title":"Dracula","author":"Stoker, Bram","year":null,"download_count":61311,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/mythology-legends-folklore":{"post":{"operationId":"mythology_legends_folklore","summary":"Curated reading list on Mythology, Legends & Folklore for tutoring agents, quiz generators, and reading apps — 2463 publ","description":"Curated reading list on Mythology, Legends & Folklore for tutoring agents, quiz generators, and reading apps — 2463 public-domain books (e.g. The Book of the Thousand Nights and a Night — Volume 01 (of 10), King Arthur and the Knights of the Round Table, Four Arthurian Romances). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Mythology, Legends & Folklore","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":51252,"title":"The Book of the Thousand Nights and a Night — Volume 01 (of 10)","author":"Unknown","year":null,"download_count":62488,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/n":{"post":{"operationId":"n","summary":"Curated reading list on N for tutoring agents, quiz generators, and reading apps — 187 public-domain books (e.g. Lives o","description":"Curated reading list on N for tutoring agents, quiz generators, and reading apps — 187 public-domain books (e.g. Lives of the Most Eminent Painters Sculptors and Architects, Vol. 01 (of 10) Cimabue to Agnolo Gaddi, A history of art in Chaldæa & Assyria, Vol. 1 (of 2), A History of Art for Beginners and Students: Painting, Sculpture, Architecture). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"N","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25326,"title":"Lives of the Most Eminent Painters Sculptors and Architects, Vol. 01 (of 10) Cimabue to Agnolo Gaddi","author":"Vasari, Giorgio","year":null,"download_count":23867,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/na":{"post":{"operationId":"na","summary":"Curated reading list on NA for tutoring agents, quiz generators, and reading apps — 228 public-domain books (e.g. Royal ","description":"Curated reading list on NA for tutoring agents, quiz generators, and reading apps — 228 public-domain books (e.g. Royal Palaces and Parks of France, Woodward's Country Homes, Bell's Cathedrals: The Cathedral Church of Gloucester [2nd ed.] A Description of Its Fabric and A Brief History of the Espicopal See). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"NA","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25842,"title":"Royal Palaces and Parks of France","author":"Mansfield, M. F. (Milburg Francisco)","year":null,"download_count":10121,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/nature-gardening-animals":{"post":{"operationId":"nature_gardening_animals","summary":"Curated reading list on Nature/Gardening/Animals for tutoring agents, quiz generators, and reading apps — 1820 public-do","description":"Curated reading list on Nature/Gardening/Animals for tutoring agents, quiz generators, and reading apps — 1820 public-domain books (e.g. The Natural History of Pliny, Volume 3 (of 6), Audubon the Naturalist: A History of His Life and Time. Vol. 2 (of 2), Studies of American Fungi. Mushrooms, Edible, Poisonous, etc.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Nature/Gardening/Animals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":59131,"title":"The Natural History of Pliny, Volume 3 (of 6)","author":"Pliny, the Elder","year":null,"download_count":21423,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/nc":{"post":{"operationId":"nc","summary":"Curated reading list on NC for tutoring agents, quiz generators, and reading apps — 186 public-domain books (e.g. Line a","description":"Curated reading list on NC for tutoring agents, quiz generators, and reading apps — 186 public-domain books (e.g. Line and Form (1900), The Confessions of a Caricaturist, Vol. 2, Why They Married). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"NC","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25290,"title":"Line and Form (1900)","author":"Crane, Walter","year":null,"download_count":9196,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/nd":{"post":{"operationId":"nd","summary":"Curated reading list on ND for tutoring agents, quiz generators, and reading apps — 262 public-domain books (e.g. The No","description":"Curated reading list on ND for tutoring agents, quiz generators, and reading apps — 262 public-domain books (e.g. The Notebooks of Leonardo Da Vinci — Complete, Præraphaelite diaries and letters, Fra Angelico). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"ND","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":5000,"title":"The Notebooks of Leonardo Da Vinci — Complete","author":"Leonardo, da Vinci","year":null,"download_count":18817,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/new-york-n-y-fiction":{"post":{"operationId":"new_york_n_y_fiction","summary":"Curated reading list on New York (N.Y.) -- Fiction for tutoring agents, quiz generators, and reading apps — 244 public-d","description":"Curated reading list on New York (N.Y.) -- Fiction for tutoring agents, quiz generators, and reading apps — 244 public-domain books (e.g. I am a woman, The Green Mouse, Torchy and Vee). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"New York (N.Y.) -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":76178,"title":"I am a woman","author":"Bannon, Ann","year":null,"download_count":34771,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/nk":{"post":{"operationId":"nk","summary":"Curated reading list on NK for tutoring agents, quiz generators, and reading apps — 161 public-domain books (e.g. The Ta","description":"Curated reading list on NK for tutoring agents, quiz generators, and reading apps — 161 public-domain books (e.g. The Tapestry Book, Wood-Carving: Design and Workmanship, Chats on Household Curios). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"NK","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":26151,"title":"The Tapestry Book","author":"Candee, Helen Churchill","year":null,"download_count":11547,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/nobel-prizes-in-literature":{"post":{"operationId":"nobel_prizes_in_literature","summary":"Curated reading list on Nobel Prizes in Literature for tutoring agents, quiz generators, and reading apps — 525 public-d","description":"Curated reading list on Nobel Prizes in Literature for tutoring agents, quiz generators, and reading apps — 525 public-domain books (e.g. A farewell to arms, The Red Lily — Complete, The Lock and Key Library: Classic Mystery and Detective Stories: Modern English). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Nobel Prizes in Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":75201,"title":"A farewell to arms","author":"Hemingway, Ernest","year":null,"download_count":40474,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/notes-and-queries":{"post":{"operationId":"notes_and_queries","summary":"Curated reading list on Notes and Queries for tutoring agents, quiz generators, and reading apps — 219 public-domain boo","description":"Curated reading list on Notes and Queries for tutoring agents, quiz generators, and reading apps — 219 public-domain books (e.g. Notes and Queries, Number 194, July 16, 1853 A Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Notes and Queries","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":28476,"title":"Notes and Queries, Number 194, July 16, 1853 A Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.","author":"Various","year":null,"download_count":1146,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/novels":{"post":{"operationId":"novels","summary":"Curated reading list on Novels for tutoring agents, quiz generators, and reading apps — 18424 public-domain books (e.g. ","description":"Curated reading list on Novels for tutoring agents, quiz generators, and reading apps — 18424 public-domain books (e.g. Moby Dick; Or, The Whale, Pride and Prejudice, A Room with a View). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Novels","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/nutrition":{"post":{"operationId":"nutrition","summary":"Curated reading list on Nutrition for tutoring agents, quiz generators, and reading apps — 150 public-domain books (e.g.","description":"Curated reading list on Nutrition for tutoring agents, quiz generators, and reading apps — 150 public-domain books (e.g. Human Foods and Their Nutritive Value, The No Breakfast Plan and the Fasting-Cure, The Golden Age Cook Book). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Nutrition","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":20871,"title":"Human Foods and Their Nutritive Value","author":"Snyder, Harry","year":null,"download_count":7704,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/orphans-fiction":{"post":{"operationId":"orphans_fiction","summary":"Curated reading list on Orphans -- Fiction for tutoring agents, quiz generators, and reading apps — 132 public-domain bo","description":"Curated reading list on Orphans -- Fiction for tutoring agents, quiz generators, and reading apps — 132 public-domain books (e.g. Jane Eyre: An Autobiography, The Mysteries of Udolpho, Oliver Twist, Vol. 2 (of 3)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Orphans -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1260,"title":"Jane Eyre: An Autobiography","author":"Brontë, Charlotte","year":null,"download_count":67570,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/orphans-juvenile-fiction":{"post":{"operationId":"orphans_juvenile_fiction","summary":"Curated reading list on Orphans -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 221 public-","description":"Curated reading list on Orphans -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 221 public-domain books (e.g. The Secret Garden, Grateful Peter's new year's gift, A Little Girl in Old Quebec). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Orphans -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":113,"title":"The Secret Garden","author":"Burnett, Frances Hodgson","year":null,"download_count":21065,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pa":{"post":{"operationId":"pa","summary":"Curated reading list on PA for tutoring agents, quiz generators, and reading apps — 349 public-domain books (e.g. The An","description":"Curated reading list on PA for tutoring agents, quiz generators, and reading apps — 349 public-domain books (e.g. The Anabasis of Alexander : $b or, The history of the wars and conquests of Alexander the Great, The Iliad, The Odyssey Rendered into English prose for the use of those who cannot read the original). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PA","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":46976,"title":"The Anabasis of Alexander : $b or, The history of the wars and conquests of Alexander the Great","author":"Arrian","year":null,"download_count":46244,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/parenthood-family-relations":{"post":{"operationId":"parenthood_family_relations","summary":"Curated reading list on Parenthood & Family Relations for tutoring agents, quiz generators, and reading apps — 482 publi","description":"Curated reading list on Parenthood & Family Relations for tutoring agents, quiz generators, and reading apps — 482 public-domain books (e.g. Eighty Years and More; Reminiscences 1815-1897, Memoirs of the Duchesse de Dino (Afterwards Duchesse de Talleyrand et de Sagan), 1836-1840). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Parenthood & Family Relations","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11982,"title":"Eighty Years and More; Reminiscences 1815-1897","author":"Stanton, Elizabeth Cady","year":null,"download_count":30512,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/paris-france-fiction":{"post":{"operationId":"paris_france_fiction","summary":"Curated reading list on Paris (France) -- Fiction for tutoring agents, quiz generators, and reading apps — 139 public-do","description":"Curated reading list on Paris (France) -- Fiction for tutoring agents, quiz generators, and reading apps — 139 public-domain books (e.g. Camille (La Dame aux Camilias), The Phantom of the Opera, Les Misérables). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Paris (France) -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1608,"title":"Camille (La Dame aux Camilias)","author":"Dumas, Alexandre","year":null,"download_count":33277,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pe":{"post":{"operationId":"pe","summary":"Curated reading list on PE for tutoring agents, quiz generators, and reading apps — 249 public-domain books (e.g. Chambe","description":"Curated reading list on PE for tutoring agents, quiz generators, and reading apps — 249 public-domain books (e.g. Chambers's Twentieth Century Dictionary (part 1 of 4: A-D), The Comic English Grammar: A New And Facetious Introduction To The English Tongue, The Ontario High School Reader). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PE","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":37683,"title":"Chambers's Twentieth Century Dictionary (part 1 of 4: A-D)","author":"Unknown","year":null,"download_count":20939,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/periodicals":{"post":{"operationId":"periodicals","summary":"Curated reading list on Periodicals for tutoring agents, quiz generators, and reading apps — 274 public-domain books (e.","description":"Curated reading list on Periodicals for tutoring agents, quiz generators, and reading apps — 274 public-domain books (e.g. Chambers's Edinburgh Journal, No. 452 Volume 18, New Series, August 28, 1852, Chambers's Journal of Popular Literature, Science, and Art, fifth series, no. 153, vol. III, December 4, 1886). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22187,"title":"Chambers's Edinburgh Journal, No. 452 Volume 18, New Series, August 28, 1852","author":"Various","year":null,"download_count":35483,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pg":{"post":{"operationId":"pg","summary":"Curated reading list on PG for tutoring agents, quiz generators, and reading apps — 278 public-domain books (e.g. Crime ","description":"Curated reading list on PG for tutoring agents, quiz generators, and reading apps — 278 public-domain books (e.g. Crime and Punishment, The Brothers Karamazov, War and Peace). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PG","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2554,"title":"Crime and Punishment","author":"Dostoyevsky, Fyodor","year":null,"download_count":93752,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/philosophy-ethics":{"post":{"operationId":"philosophy_ethics","summary":"Curated reading list on Philosophy & Ethics for tutoring agents, quiz generators, and reading apps — 2479 public-domain ","description":"Curated reading list on Philosophy & Ethics for tutoring agents, quiz generators, and reading apps — 2479 public-domain books (e.g. Meditations, The City of God, Volume I, The Confessions of St. Augustine). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Philosophy & Ethics","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2680,"title":"Meditations","author":"Marcus Aurelius, Emperor of Rome","year":null,"download_count":60197,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/plays-films-dramas":{"post":{"operationId":"plays_films_dramas","summary":"Curated reading list on Plays/Films/Dramas for tutoring agents, quiz generators, and reading apps — 1668 public-domain b","description":"Curated reading list on Plays/Films/Dramas for tutoring agents, quiz generators, and reading apps — 1668 public-domain books (e.g. Romeo and Juliet, The Complete Works of William Shakespeare, Romeo and Juliet). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Plays/Films/Dramas","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1513,"title":"Romeo and Juliet","author":"Shakespeare, William","year":null,"download_count":103120,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pn":{"post":{"operationId":"pn","summary":"Curated reading list on PN for tutoring agents, quiz generators, and reading apps — 948 public-domain books (e.g. Twenty","description":"Curated reading list on PN for tutoring agents, quiz generators, and reading apps — 948 public-domain books (e.g. Twenty-Five Ghost Stories, Library of the World's Best Mystery and Detective Stories, Astounding Stories of Super-Science January 1930). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PN","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":53419,"title":"Twenty-Five Ghost Stories","author":"Unknown","year":null,"download_count":43832,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/political-fiction":{"post":{"operationId":"political_fiction","summary":"Curated reading list on Political fiction for tutoring agents, quiz generators, and reading apps — 171 public-domain boo","description":"Curated reading list on Political fiction for tutoring agents, quiz generators, and reading apps — 171 public-domain books (e.g. The Secret Agent: A Simple Tale, The Candidate: A Political Romance, Uncle Tom's Cabin). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Political fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":974,"title":"The Secret Agent: A Simple Tale","author":"Conrad, Joseph","year":null,"download_count":29226,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/political-science-early-works-to-1800":{"post":{"operationId":"political_science_early_works_to_1800","summary":"Curated shelf: Political science -- Early works to 1800 — 11 public-domain books including The Republic, Leviathan, Comm","description":"Curated shelf: Political science -- Early works to 1800 — 11 public-domain books including The Republic, Leviathan, Common Sense. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Political science -- Early works to 1800","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":150,"title":"The Republic","author":"Plato, 428? BCE-348? BCE","year":null,"download_count":9563,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/politics":{"post":{"operationId":"politics","summary":"Curated reading list on Politics for tutoring agents, quiz generators, and reading apps — 1228 public-domain books (e.g.","description":"Curated reading list on Politics for tutoring agents, quiz generators, and reading apps — 1228 public-domain books (e.g. Anarchism and Other Essays, Washington Confidential, The Prince). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Politics","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2162,"title":"Anarchism and Other Essays","author":"Goldman, Emma","year":null,"download_count":31039,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/popular-literature-great-britain-periodicals":{"post":{"operationId":"popular_literature_great_britain_periodicals","summary":"Curated reading list on Popular literature -- Great Britain -- Periodicals for tutoring agents, quiz generators, and rea","description":"Curated reading list on Popular literature -- Great Britain -- Periodicals for tutoring agents, quiz generators, and reading apps — 202 public-domain books (e.g. The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 339, November 8, 1828, The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 484, April 9, 1831). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Popular literature -- Great Britain -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11312,"title":"The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 339, November 8, 1828","author":"Various","year":null,"download_count":765,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pq":{"post":{"operationId":"pq","summary":"Curated reading list on PQ for tutoring agents, quiz generators, and reading apps — 1410 public-domain books (e.g. The C","description":"Curated reading list on PQ for tutoring agents, quiz generators, and reading apps — 1410 public-domain books (e.g. The Count of Monte Cristo, Carmen, The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PQ","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1184,"title":"The Count of Monte Cristo","author":"Dumas, Alexandre","year":null,"download_count":77916,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pr":{"post":{"operationId":"pr","summary":"Curated reading list on PR for tutoring agents, quiz generators, and reading apps — 9903 public-domain books (e.g. Pride","description":"Curated reading list on PR for tutoring agents, quiz generators, and reading apps — 9903 public-domain books (e.g. Pride and Prejudice, Romeo and Juliet, A Room with a View). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PR","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/private-investigators-england-fiction":{"post":{"operationId":"private_investigators_england_fiction","summary":"Curated shelf: Private investigators -- England -- Fiction — 13 public-domain books including The Adventures of Sherlock","description":"Curated shelf: Private investigators -- England -- Fiction — 13 public-domain books including The Adventures of Sherlock Holmes, The Hound of the Baskervilles, A Study in Scarlet. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Private investigators -- England -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1661,"title":"The Adventures of Sherlock Holmes","author":"Doyle, Arthur Conan, 1859-1930","year":null,"download_count":23345,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ps":{"post":{"operationId":"ps","summary":"Curated reading list on PS for tutoring agents, quiz generators, and reading apps — 11828 public-domain books (e.g. Moby","description":"Curated reading list on PS for tutoring agents, quiz generators, and reading apps — 11828 public-domain books (e.g. Moby Dick; Or, The Whale, The Blue Castle: a novel, Little Women; Or, Meg, Jo, Beth, and Amy). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PS","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/psychiatry-psychology":{"post":{"operationId":"psychiatry_psychology","summary":"Curated reading list on Psychiatry/Psychology for tutoring agents, quiz generators, and reading apps — 471 public-domain","description":"Curated reading list on Psychiatry/Psychology for tutoring agents, quiz generators, and reading apps — 471 public-domain books (e.g. Psychotherapy, Essay on the Creative Imagination, Three Thousand Years of Mental Healing). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Psychiatry/Psychology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22775,"title":"Psychotherapy","author":"Münsterberg, Hugo","year":null,"download_count":9898,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/psychological-fiction":{"post":{"operationId":"psychological_fiction","summary":"Curated reading list on Psychological fiction for tutoring agents, quiz generators, and reading apps — 287 public-domain","description":"Curated reading list on Psychological fiction for tutoring agents, quiz generators, and reading apps — 287 public-domain books (e.g. Moby Dick; Or, The Whale, Crime and Punishment, The strange case of Dr. Jekyll and Mr. Hyde). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Psychological fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pt":{"post":{"operationId":"pt","summary":"Curated reading list on PT for tutoring agents, quiz generators, and reading apps — 801 public-domain books (e.g. On the","description":"Curated reading list on PT for tutoring agents, quiz generators, and reading apps — 801 public-domain books (e.g. On the Cross: A Romance of the Passion Play at Oberammergau, The Sorrows of Young Werther, Erotica Romana). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PT","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":36725,"title":"On the Cross: A Romance of the Passion Play at Oberammergau","author":"Hillern, Wilhelmine von","year":null,"download_count":40390,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/punch":{"post":{"operationId":"punch","summary":"Curated reading list on Punch for tutoring agents, quiz generators, and reading apps — 493 public-domain books (e.g. The","description":"Curated reading list on Punch for tutoring agents, quiz generators, and reading apps — 493 public-domain books (e.g. The Posy Ring: A Book of Verse for Children, Punch, or the London Charivari, Volume 99, July 19, 1890, Punch, or the London Charivari, Volume 1, Complete). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Punch","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22922,"title":"The Posy Ring: A Book of Verse for Children","author":"Unknown","year":null,"download_count":7346,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/pz":{"post":{"operationId":"pz","summary":"Curated reading list on PZ for tutoring agents, quiz generators, and reading apps — 7456 public-domain books (e.g. The B","description":"Curated reading list on PZ for tutoring agents, quiz generators, and reading apps — 7456 public-domain books (e.g. The Blue Castle: a novel, Alice's Adventures in Wonderland, Little Women; Or, Meg, Jo, Beth, and Amy). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"PZ","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":67979,"title":"The Blue Castle: a novel","author":"Montgomery, L. M. (Lucy Maud)","year":null,"download_count":98187,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/q":{"post":{"operationId":"q","summary":"Curated reading list on Q for tutoring agents, quiz generators, and reading apps — 211 public-domain books (e.g. More Sc","description":"Curated reading list on Q for tutoring agents, quiz generators, and reading apps — 211 public-domain books (e.g. More Science from an Easy Chair, Ontario Teachers' Manuals: Nature Study, Sir Jagadis Chunder Bose, His Life and Speeches). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Q","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27015,"title":"More Science from an Easy Chair","author":"Lankester, E. Ray (Edwin Ray), Sir","year":null,"download_count":10013,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/qb":{"post":{"operationId":"qb","summary":"Curated reading list on QB for tutoring agents, quiz generators, and reading apps — 153 public-domain books (e.g. Color ","description":"Curated reading list on QB for tutoring agents, quiz generators, and reading apps — 153 public-domain books (e.g. Color Images from Mars Rovers Spirit and Opportunity, Astronomy for beginners, The Story of the Heavens). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"QB","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":12082,"title":"Color Images from Mars Rovers Spirit and Opportunity","author":"Webster, Bob","year":null,"download_count":23375,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/qc":{"post":{"operationId":"qc","summary":"Curated reading list on QC for tutoring agents, quiz generators, and reading apps — 166 public-domain books (e.g. The Bo","description":"Curated reading list on QC for tutoring agents, quiz generators, and reading apps — 166 public-domain books (e.g. The Boy with the U. S. Weather Men, How Two Boys Made Their Own Electrical Apparatus Containing Complete Directions for Making All Kinds of Simple Apparatus for the Study of Elementary Electricity, The Book of the Damned). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"QC","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22156,"title":"The Boy with the U. S. Weather Men","author":"Rolt-Wheeler, Francis","year":null,"download_count":9654,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/qe":{"post":{"operationId":"qe","summary":"Curated reading list on QE for tutoring agents, quiz generators, and reading apps — 168 public-domain books (e.g. A Stud","description":"Curated reading list on QE for tutoring agents, quiz generators, and reading apps — 168 public-domain books (e.g. A Study of Recent Earthquakes, The chemistry, properties and tests of precious stones, Field book of common rocks and minerals : $b for identifying the rocks and minerals of the United States and interpreting their origins and meanings). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"QE","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25062,"title":"A Study of Recent Earthquakes","author":"Davison, Charles","year":null,"download_count":10172,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/qh":{"post":{"operationId":"qh","summary":"Curated reading list on QH for tutoring agents, quiz generators, and reading apps — 614 public-domain books (e.g. Life a","description":"Curated reading list on QH for tutoring agents, quiz generators, and reading apps — 614 public-domain books (e.g. Life and Letters of Charles Darwin — Volume 1, More Letters of Charles Darwin — Volume 1 A Record of His Work in a Series of Hitherto Unpublished Letters, The Natural History of Pliny, Volume 3 (of 6)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"QH","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2087,"title":"Life and Letters of Charles Darwin — Volume 1","author":"Darwin, Charles","year":null,"download_count":30219,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/qk":{"post":{"operationId":"qk","summary":"Curated reading list on QK for tutoring agents, quiz generators, and reading apps — 200 public-domain books (e.g. Letter","description":"Curated reading list on QK for tutoring agents, quiz generators, and reading apps — 200 public-domain books (e.g. Letters of Asa Gray; Vol. 2, Studies of American Fungi. Mushrooms, Edible, Poisonous, etc., Vegetable Teratology An Account of the Principal Deviations from the Usual Construction of Plants). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"QK","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":55987,"title":"Letters of Asa Gray; Vol. 2","author":"Gray, Asa","year":null,"download_count":20251,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ql":{"post":{"operationId":"ql","summary":"Curated reading list on QL for tutoring agents, quiz generators, and reading apps — 664 public-domain books (e.g. Audubo","description":"Curated reading list on QL for tutoring agents, quiz generators, and reading apps — 664 public-domain books (e.g. Audubon the Naturalist: A History of His Life and Time. Vol. 2 (of 2), Anecdotes of Dogs, Anecdotes of the Habits and Instinct of Animals). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"QL","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":58984,"title":"Audubon the Naturalist: A History of His Life and Time. Vol. 2 (of 2)","author":"Herrick, Francis Hobart","year":null,"download_count":21164,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/questions-and-answers-periodicals":{"post":{"operationId":"questions_and_answers_periodicals","summary":"Curated reading list on Questions and answers -- Periodicals for tutoring agents, quiz generators, and reading apps — 22","description":"Curated reading list on Questions and answers -- Periodicals for tutoring agents, quiz generators, and reading apps — 224 public-domain books (e.g. Notes and Queries, Number 194, July 16, 1853 A Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Questions and answers -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":28476,"title":"Notes and Queries, Number 194, July 16, 1853 A Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.","author":"Various","year":null,"download_count":1146,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/rc":{"post":{"operationId":"rc","summary":"Curated reading list on RC for tutoring agents, quiz generators, and reading apps — 199 public-domain books (e.g. Preven","description":"Curated reading list on RC for tutoring agents, quiz generators, and reading apps — 199 public-domain books (e.g. Preventable Diseases, Insects and Diseases A Popular Account of the Way in Which Insects may Spread or Cause some of our Common Diseases, The Home Medical Library, Volume 2 (of 6)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"RC","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21965,"title":"Preventable Diseases","author":"Hutchinson, Woods","year":null,"download_count":11329,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/religion-spirituality":{"post":{"operationId":"religion_spirituality","summary":"Curated reading list on Religion/Spirituality for tutoring agents, quiz generators, and reading apps — 3658 public-domai","description":"Curated reading list on Religion/Spirituality for tutoring agents, quiz generators, and reading apps — 3658 public-domain books (e.g. The City of God, Volume I, The Confessions of St. Augustine, Autobiography of a Yogi). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Religion/Spirituality","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":45304,"title":"The City of God, Volume I","author":"Augustine, of Hippo, Saint","year":null,"download_count":53828,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/reports-conference-proceedings":{"post":{"operationId":"reports_conference_proceedings","summary":"Curated reading list on Reports & Conference Proceedings for tutoring agents, quiz generators, and reading apps — 405 pu","description":"Curated reading list on Reports & Conference Proceedings for tutoring agents, quiz generators, and reading apps — 405 public-domain books (e.g. The Journal of Negro History, Volume 5, 1920, Harper's New Monthly Magazine, Vol. 3, July, 1851, The Quarterly Review, Volume 162, No. 324, April, 1886). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Reports & Conference Proceedings","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23200,"title":"The Journal of Negro History, Volume 5, 1920","author":"Various","year":null,"download_count":11879,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/romance":{"post":{"operationId":"romance","summary":"Curated reading list on Romance for tutoring agents, quiz generators, and reading apps — 2252 public-domain books (e.g. ","description":"Curated reading list on Romance for tutoring agents, quiz generators, and reading apps — 2252 public-domain books (e.g. Pride and Prejudice, Romeo and Juliet, A Room with a View). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Romance","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/russian-literature":{"post":{"operationId":"russian_literature","summary":"Curated reading list on Russian Literature for tutoring agents, quiz generators, and reading apps — 264 public-domain bo","description":"Curated reading list on Russian Literature for tutoring agents, quiz generators, and reading apps — 264 public-domain books (e.g. Crime and Punishment, The Brothers Karamazov, War and Peace). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Russian Literature","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2554,"title":"Crime and Punishment","author":"Dostoyevsky, Fyodor","year":null,"download_count":93752,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/satire":{"post":{"operationId":"satire","summary":"Curated reading list on Satire for tutoring agents, quiz generators, and reading apps — 136 public-domain books (e.g. Gu","description":"Curated reading list on Satire for tutoring agents, quiz generators, and reading apps — 136 public-domain books (e.g. Gulliver's Travels into Several Remote Regions of the World, Gulliver's Travels into Several Remote Nations of the World, A Connecticut Yankee in King Arthur's Court). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Satire","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":17157,"title":"Gulliver's Travels into Several Remote Regions of the World","author":"Swift, Jonathan","year":null,"download_count":31354,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/sb":{"post":{"operationId":"sb","summary":"Curated reading list on SB for tutoring agents, quiz generators, and reading apps — 246 public-domain books (e.g. Amateu","description":"Curated reading list on SB for tutoring agents, quiz generators, and reading apps — 246 public-domain books (e.g. Amateur Gardencraft: A Book for the Home-Maker and Garden Lover). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"SB","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25278,"title":"Amateur Gardencraft: A Book for the Home-Maker and Garden Lover","author":"Rexford, Eben E. (Eben Eugene)","year":null,"download_count":8822,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/schools-juvenile-fiction":{"post":{"operationId":"schools_juvenile_fiction","summary":"Curated reading list on Schools -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 172 public-","description":"Curated reading list on Schools -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 172 public-domain books (e.g. The Rover Boys on the Farm; or, Last Days at Putnam Hall, Claribel : $b or, Rest at last, Five Little Peppers at School). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Schools -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22163,"title":"The Rover Boys on the Farm; or, Last Days at Putnam Hall","author":"Stratemeyer, Edward","year":null,"download_count":36057,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-biology":{"post":{"operationId":"science_biology","summary":"Curated reading list on Science - Biology for tutoring agents, quiz generators, and reading apps — 1364 public-domain bo","description":"Curated reading list on Science - Biology for tutoring agents, quiz generators, and reading apps — 1364 public-domain books (e.g. Life and Letters of Charles Darwin — Volume 1, More Letters of Charles Darwin — Volume 1 A Record of His Work in a Series of Hitherto Unpublished Letters, The Natural History of Pliny, Volume 3 (of 6)). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science - Biology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2087,"title":"Life and Letters of Charles Darwin — Volume 1","author":"Darwin, Charles","year":null,"download_count":30219,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-chemistry-biochemistry":{"post":{"operationId":"science_chemistry_biochemistry","summary":"Curated reading list on Science - Chemistry/Biochemistry for tutoring agents, quiz generators, and reading apps — 345 pu","description":"Curated reading list on Science - Chemistry/Biochemistry for tutoring agents, quiz generators, and reading apps — 345 public-domain books. Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science - Chemistry/Biochemistry","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22914,"title":"The Sceptical Chymist or Chymico-Physical Doubts & Paradoxes, Touching the Spagyrist's Principles Commonly call'd Hypostatical; As they are wont to be Propos'd and Defended by the Generality of Alchymists. Whereunto is præmis'd Part of another Discourse relating to the same Subject.","author":"Boyle, Robert","year":null,"download_count":13296,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-earth-agricultural-farming":{"post":{"operationId":"science_earth_agricultural_farming","summary":"Curated reading list on Science - Earth/Agricultural/Farming for tutoring agents, quiz generators, and reading apps — 90","description":"Curated reading list on Science - Earth/Agricultural/Farming for tutoring agents, quiz generators, and reading apps — 904 public-domain books (e.g. Color Images from Mars Rovers Spirit and Opportunity, Studies of American Fungi. Mushrooms, Edible, Poisonous, etc., Manures and the principles of manuring). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science - Earth/Agricultural/Farming","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":12082,"title":"Color Images from Mars Rovers Spirit and Opportunity","author":"Webster, Bob","year":null,"download_count":23375,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-fiction-fantasy":{"post":{"operationId":"science_fiction_fantasy","summary":"Curated reading list on Science-Fiction & Fantasy for tutoring agents, quiz generators, and reading apps — 3912 public-d","description":"Curated reading list on Science-Fiction & Fantasy for tutoring agents, quiz generators, and reading apps — 3912 public-domain books (e.g. Frankenstein; or, the modern prometheus, Dracula, Dracula). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science-Fiction & Fantasy","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft","year":null,"download_count":75458,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-fiction":{"post":{"operationId":"science_fiction","summary":"Curated reading list on Science fiction for tutoring agents, quiz generators, and reading apps — 3203 public-domain book","description":"Curated reading list on Science fiction for tutoring agents, quiz generators, and reading apps — 3203 public-domain books (e.g. Frankenstein; or, the modern prometheus, The strange case of Dr. Jekyll and Mr. Hyde, The Sex Life of the Gods). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":84,"title":"Frankenstein; or, the modern prometheus","author":"Shelley, Mary Wollstonecraft","year":null,"download_count":75458,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-periodicals":{"post":{"operationId":"science_periodicals","summary":"Curated reading list on Science -- Periodicals for tutoring agents, quiz generators, and reading apps — 211 public-domai","description":"Curated reading list on Science -- Periodicals for tutoring agents, quiz generators, and reading apps — 211 public-domain books (e.g. Lippincott's Magazine of Popular Literature and Science, Vol. 22, September, 1878, Lippincott's Magazine of Popular Literature and Science, December 1878). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science -- Periodicals","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22250,"title":"Lippincott's Magazine of Popular Literature and Science, Vol. 22, September, 1878","author":"Various","year":null,"download_count":4589,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/science-physics":{"post":{"operationId":"science_physics","summary":"Curated reading list on Science - Physics for tutoring agents, quiz generators, and reading apps — 510 public-domain boo","description":"Curated reading list on Science - Physics for tutoring agents, quiz generators, and reading apps — 510 public-domain books (e.g. The Notebooks of Leonardo Da Vinci — Complete, Steam, Its Generation and Use, The Story of the Heavens). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Science - Physics","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":5000,"title":"The Notebooks of Leonardo Da Vinci — Complete","author":"Leonardo, da Vinci","year":null,"download_count":18817,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/sea-stories":{"post":{"operationId":"sea_stories","summary":"Curated reading list on Sea stories for tutoring agents, quiz generators, and reading apps — 322 public-domain books (e.","description":"Curated reading list on Sea stories for tutoring agents, quiz generators, and reading apps — 322 public-domain books (e.g. Moby Dick; Or, The Whale, The Adventures of Roderick Random, Treasure Island). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Sea stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2701,"title":"Moby Dick; Or, The Whale","author":"Melville, Herman","year":null,"download_count":160099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/sexuality-erotica":{"post":{"operationId":"sexuality_erotica","summary":"Curated shelf: Sexuality & Erotica — 9 public-domain books including The Romance of Lust: A classic Victorian erotic nov","description":"Curated shelf: Sexuality & Erotica — 9 public-domain books including The Romance of Lust: A classic Victorian erotic novel, The Kama Sutra of Vatsyayana\r\nTranslated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks, Memoirs of Fanny Hill\r\nA New and Genuine Edition from the Original Text (London, 1749). Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Sexuality & Erotica","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":30254,"title":"The Romance of Lust: A classic Victorian erotic novel","author":"Anonymous","year":null,"download_count":6156,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/sf":{"post":{"operationId":"sf","summary":"Curated reading list on SF for tutoring agents, quiz generators, and reading apps — 238 public-domain books (e.g. The Ho","description":"Curated reading list on SF for tutoring agents, quiz generators, and reading apps — 238 public-domain books (e.g. The Horsewoman: A Practical Guide to Side-Saddle Riding, 2nd. Ed.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"SF","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":26318,"title":"The Horsewoman: A Practical Guide to Side-Saddle Riding, 2nd. Ed.","author":"Hayes, Alice M.","year":null,"download_count":14583,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/short-stories-american":{"post":{"operationId":"short_stories_american","summary":"Curated reading list on Short stories, American for tutoring agents, quiz generators, and reading apps — 331 public-doma","description":"Curated reading list on Short stories, American for tutoring agents, quiz generators, and reading apps — 331 public-domain books (e.g. The King in Yellow, The best short stories of 1920, and the yearbook of the American short story, The best short stories of 1919, and the yearbook of the American short story). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Short stories, American","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":8492,"title":"The King in Yellow","author":"Chambers, Robert W. (Robert William)","year":null,"download_count":56111,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/short-stories-english":{"post":{"operationId":"short_stories_english","summary":"Curated reading list on Short stories, English for tutoring agents, quiz generators, and reading apps — 236 public-domai","description":"Curated reading list on Short stories, English for tutoring agents, quiz generators, and reading apps — 236 public-domain books (e.g. Ghost Stories of an Antiquary, The mysterious Mr. Quin, The magic casket). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Short stories, English","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":8486,"title":"Ghost Stories of an Antiquary","author":"James, M. R. (Montague Rhodes)","year":null,"download_count":30049,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/short-stories":{"post":{"operationId":"short_stories","summary":"Curated reading list on Short Stories for tutoring agents, quiz generators, and reading apps — 5470 public-domain books ","description":"Curated reading list on Short Stories for tutoring agents, quiz generators, and reading apps — 5470 public-domain books (e.g. The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar, The Adventures of Sherlock Holmes, The King in Yellow). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Short Stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":6133,"title":"The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar","author":"Leblanc, Maurice","year":null,"download_count":75744,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/siblings-juvenile-fiction":{"post":{"operationId":"siblings_juvenile_fiction","summary":"Curated reading list on Siblings -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 342 public","description":"Curated reading list on Siblings -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 342 public-domain books (e.g. The Curlytops on Star Island; Or, Camping out with Grandpa, Prudy Keeping House, The Curlytops and Their Playmates; Or, Jolly Times Through the Holidays). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Siblings -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25477,"title":"The Curlytops on Star Island; Or, Camping out with Grandpa","author":"Garis, Howard Roger","year":null,"download_count":6978,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/social-classes-fiction":{"post":{"operationId":"social_classes_fiction","summary":"Curated shelf: Social classes -- Fiction — 9 public-domain books including Pride and Prejudice, Sense and Sensibility, T","description":"Curated shelf: Social classes -- Fiction — 9 public-domain books including Pride and Prejudice, Sense and Sensibility, The Prince and the Pauper. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Social classes -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane, 1775-1817","year":null,"download_count":59636,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/sociology":{"post":{"operationId":"sociology","summary":"Curated reading list on Sociology for tutoring agents, quiz generators, and reading apps — 729 public-domain books (e.g.","description":"Curated reading list on Sociology for tutoring agents, quiz generators, and reading apps — 729 public-domain books (e.g. The Kama Sutra of Vatsyayana Translated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks, Anarchism and Other Essays). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Sociology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":27827,"title":"The Kama Sutra of Vatsyayana Translated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks","author":"Vatsyayana","year":null,"download_count":35282,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/space-ships-fiction":{"post":{"operationId":"space_ships_fiction","summary":"Curated reading list on Space ships -- Fiction for tutoring agents, quiz generators, and reading apps — 192 public-domai","description":"Curated reading list on Space ships -- Fiction for tutoring agents, quiz generators, and reading apps — 192 public-domain books (e.g. The Misplaced Battleship, Plague Ship, From the Earth to the moon; and, round the moon). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Space ships -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22541,"title":"The Misplaced Battleship","author":"Harrison, Harry","year":null,"download_count":48226,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/sports-hobbies":{"post":{"operationId":"sports_hobbies","summary":"Curated reading list on Sports/Hobbies for tutoring agents, quiz generators, and reading apps — 596 public-domain books ","description":"Curated reading list on Sports/Hobbies for tutoring agents, quiz generators, and reading apps — 596 public-domain books (e.g. The Horsewoman: A Practical Guide to Side-Saddle Riding, 2nd. Ed., Home Taxidermy for Pleasure and Profit A Guide for Those Who Wish to Prepare and Mount Animals, Birds, Fish, Reptiles, etc., for Home, Den, or Office Decoration). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Sports/Hobbies","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":26318,"title":"The Horsewoman: A Practical Guide to Side-Saddle Riding, 2nd. Ed.","author":"Hayes, Alice M.","year":null,"download_count":14583,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/t":{"post":{"operationId":"t","summary":"Curated reading list on T for tutoring agents, quiz generators, and reading apps — 193 public-domain books. Full-text re","description":"Curated reading list on T for tutoring agents, quiz generators, and reading apps — 193 public-domain books. Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"T","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23319,"title":"Mechanical Drawing Self-Taught Comprising instructions in the selection and preparation of drawing instruments, elementary instruction in practical mechanical drawing; together with examples in simple geometry and elementary mechanism, including screw threads, gear wheels, mechanical motions, engines and boilers","author":"Rose, Joshua","year":null,"download_count":15605,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/teaching-education":{"post":{"operationId":"teaching_education","summary":"Curated reading list on Teaching & Education for tutoring agents, quiz generators, and reading apps — 1124 public-domain","description":"Curated reading list on Teaching & Education for tutoring agents, quiz generators, and reading apps — 1124 public-domain books (e.g. A Treatise on Domestic Economy; For the Use of Young Ladies at Home and at School, Children's Literature A Textbook of Sources for Teachers and Teacher-Training Classes). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Teaching & Education","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21829,"title":"A Treatise on Domestic Economy; For the Use of Young Ladies at Home and at School","author":"Beecher, Catharine Esther","year":null,"download_count":13551,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/technology":{"post":{"operationId":"technology","summary":"Curated reading list on Technology for tutoring agents, quiz generators, and reading apps — 219 public-domain books. Ful","description":"Curated reading list on Technology for tutoring agents, quiz generators, and reading apps — 219 public-domain books. Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Technology","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23319,"title":"Mechanical Drawing Self-Taught Comprising instructions in the selection and preparation of drawing instruments, elementary instruction in practical mechanical drawing; together with examples in simple geometry and elementary mechanism, including screw threads, gear wheels, mechanical motions, engines and boilers","author":"Rose, Joshua","year":null,"download_count":15605,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/the-american-missionary":{"post":{"operationId":"the_american_missionary","summary":"Curated reading list on The American Missionary for tutoring agents, quiz generators, and reading apps — 140 public-doma","description":"Curated reading list on The American Missionary for tutoring agents, quiz generators, and reading apps — 140 public-domain books (e.g. The American Missionary — Volume 42, No. 03, March, 1888, The American Missionary — Volume 34, No. 7, July, 1880, The American Missionary — Volume 49, No. 03, March, 1895). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"The American Missionary","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11764,"title":"The American Missionary — Volume 42, No. 03, March, 1888","author":"Various","year":null,"download_count":806,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/the-mirror-of-literature-amusement-and-instruction":{"post":{"operationId":"the_mirror_of_literature_amusement_and_instruction","summary":"Curated reading list on The Mirror of Literature, Amusement, and Instruction for tutoring agents, quiz generators, and r","description":"Curated reading list on The Mirror of Literature, Amusement, and Instruction for tutoring agents, quiz generators, and reading apps — 202 public-domain books (e.g. The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 339, November 8, 1828, The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 484, April 9, 1831). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"The Mirror of Literature, Amusement, and Instruction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":11312,"title":"The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 339, November 8, 1828","author":"Various","year":null,"download_count":765,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/time-travel-fiction":{"post":{"operationId":"time_travel_fiction","summary":"Curated reading list on Time travel -- Fiction for tutoring agents, quiz generators, and reading apps — 152 public-domai","description":"Curated reading list on Time travel -- Fiction for tutoring agents, quiz generators, and reading apps — 152 public-domain books (e.g. A Connecticut Yankee in King Arthur's Court, The Time Machine, The weird of the wanderer : $b Being the papyrus records of some incidents in one of the previous lives of Mr. Nicholas Crabbe). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Time travel -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":86,"title":"A Connecticut Yankee in King Arthur's Court","author":"Twain, Mark","year":null,"download_count":22731,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/tragedies-drama":{"post":{"operationId":"tragedies_drama","summary":"Curated shelf: Tragedies (Drama) — 10 public-domain books including The Tragical History of Doctor Faustus\r\nFrom the Qua","description":"Curated shelf: Tragedies (Drama) — 10 public-domain books including The Tragical History of Doctor Faustus\r\nFrom the Quarto of 1604, Hamlet, The Duchess of Malfi. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Tragedies (Drama)","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":779,"title":"The Tragical History of Doctor Faustus\r\nFrom the Quarto of 1604","author":"Marlowe, Christopher, 1564-1593","year":null,"download_count":4165,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/travel-writing":{"post":{"operationId":"travel_writing","summary":"Curated reading list on Travel Writing for tutoring agents, quiz generators, and reading apps — 3045 public-domain books","description":"Curated reading list on Travel Writing for tutoring agents, quiz generators, and reading apps — 3045 public-domain books (e.g. The Expedition of Humphry Clinker, Life on the Mississippi, The Travels of Marco Polo — Volume 1). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Travel Writing","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":2160,"title":"The Expedition of Humphry Clinker","author":"Smollett, T. (Tobias)","year":null,"download_count":42470,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/travel":{"post":{"operationId":"travel","summary":"Curated reading list on Travel for tutoring agents, quiz generators, and reading apps — 158 public-domain books (e.g. Ro","description":"Curated reading list on Travel for tutoring agents, quiz generators, and reading apps — 158 public-domain books (e.g. Roughing It, Fifty Years In The Northwest With An Introduction And Appendix Containing Reminiscences, Incidents And Notes, The Journals of Lewis and Clark, 1804-1806). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Travel","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":3177,"title":"Roughing It","author":"Twain, Mark","year":null,"download_count":17534,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/triangles-interpersonal-relations-fiction":{"post":{"operationId":"triangles_interpersonal_relations_fiction","summary":"Curated reading list on Triangles (Interpersonal relations) -- Fiction for tutoring agents, quiz generators, and reading","description":"Curated reading list on Triangles (Interpersonal relations) -- Fiction for tutoring agents, quiz generators, and reading apps — 158 public-domain books (e.g. The History of Sir Richard Calmady: A Romance, What Will People Say? A Novel, The Mystery of Edwin Drood). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Triangles (Interpersonal relations) -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":23784,"title":"The History of Sir Richard Calmady: A Romance","author":"Malet, Lucas","year":null,"download_count":45009,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/ts":{"post":{"operationId":"ts","summary":"Curated reading list on TS for tutoring agents, quiz generators, and reading apps — 132 public-domain books (e.g. The St","description":"Curated reading list on TS for tutoring agents, quiz generators, and reading apps — 132 public-domain books (e.g. The Story of Silk, How to make rugs, How to Make a Shoe). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"TS","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25025,"title":"The Story of Silk","author":"Bassett, Sara Ware","year":null,"download_count":5099,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/tt":{"post":{"operationId":"tt","summary":"Curated reading list on TT for tutoring agents, quiz generators, and reading apps — 194 public-domain books (e.g. Practi","description":"Curated reading list on TT for tutoring agents, quiz generators, and reading apps — 194 public-domain books (e.g. Practical Mechanics for Boys, Woodwork Joints: How They Are Set Out, How Made and Where Used., Art in Needlework: A Book about Embroidery). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"TT","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22298,"title":"Practical Mechanics for Boys","author":"Zerbe, James Slough","year":null,"download_count":13893,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/tx":{"post":{"operationId":"tx","summary":"Curated reading list on TX for tutoring agents, quiz generators, and reading apps — 430 public-domain books (e.g. A Trea","description":"Curated reading list on TX for tutoring agents, quiz generators, and reading apps — 430 public-domain books (e.g. A Treatise on Domestic Economy; For the Use of Young Ladies at Home and at School, The servant's behaviour book : $b or, Hints on manners and dress for maid servants in small households, The Suffrage Cook Book). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"TX","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":21829,"title":"A Treatise on Domestic Economy; For the Use of Young Ladies at Home and at School","author":"Beecher, Catharine Esther","year":null,"download_count":13551,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/united-kingdom":{"post":{"operationId":"united_kingdom","summary":"Curated reading list on United Kingdom for tutoring agents, quiz generators, and reading apps — 172 public-domain books ","description":"Curated reading list on United Kingdom for tutoring agents, quiz generators, and reading apps — 172 public-domain books (e.g. The letters of Queen Victoria, vol. 1, 1837-1843 : $b A selection from Her Majesty's correspondence between the years 1837 and 1861.). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"United Kingdom","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":20023,"title":"The letters of Queen Victoria, vol. 1, 1837-1843 : $b A selection from Her Majesty's correspondence between the years 1837 and 1861.","author":"Victoria, Queen of Great Britain","year":null,"download_count":15318,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/united-states-history-civil-war-1861-1865-personal-narratives":{"post":{"operationId":"united_states_history_civil_war_1861_1865_personal_narratives","summary":"Curated reading list on United States -- History -- Civil War, 1861-1865 -- Personal narratives for tutoring agents, qui","description":"Curated reading list on United States -- History -- Civil War, 1861-1865 -- Personal narratives for tutoring agents, quiz generators, and reading apps — 137 public-domain books (e.g. Sword and Pen Ventures and Adventures of Willard Glazier). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"United States -- History -- Civil War, 1861-1865 -- Personal narratives","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":28152,"title":"Sword and Pen Ventures and Adventures of Willard Glazier","author":"Owens, John Algernon","year":null,"download_count":12591,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/united-states-social-life-and-customs-19th-century-fiction":{"post":{"operationId":"united_states_social_life_and_customs_19th_century_fiction","summary":"Curated reading list on United States -- Social life and customs -- 19th century -- Fiction for tutoring agents, quiz ge","description":"Curated reading list on United States -- Social life and customs -- 19th century -- Fiction for tutoring agents, quiz generators, and reading apps — 148 public-domain books (e.g. The King in Yellow, In Connection with the De Willoughby Claim, John Gayther's Garden and the Stories Told Therein). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"United States -- Social life and customs -- 19th century -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":8492,"title":"The King in Yellow","author":"Chambers, Robert W. (Robert William)","year":null,"download_count":56111,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/us-civil-war":{"post":{"operationId":"us_civil_war","summary":"Curated reading list on US Civil War for tutoring agents, quiz generators, and reading apps — 321 public-domain books (e","description":"Curated reading list on US Civil War for tutoring agents, quiz generators, and reading apps — 321 public-domain books (e.g. Personal Memoirs of U. S. Grant, Complete, Uncle Tom's Cabin, The Red Badge of Courage: An Episode of the American Civil War). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"US Civil War","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":4367,"title":"Personal Memoirs of U. S. Grant, Complete","author":"Grant, Ulysses S. (Ulysses Simpson)","year":null,"download_count":25933,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/voyages-and-travels-juvenile-fiction":{"post":{"operationId":"voyages_and_travels_juvenile_fiction","summary":"Curated reading list on Voyages and travels -- Juvenile fiction for tutoring agents, quiz generators, and reading apps —","description":"Curated reading list on Voyages and travels -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 304 public-domain books (e.g. Baron Trump's Marvellous Underground Journey, Yr Ynys Unyg; or, The lonely island : $b a narrative for young people, Adrift in the Wilds; Or, The Adventures of Two Shipwrecked Boys). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Voyages and travels -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":57426,"title":"Baron Trump's Marvellous Underground Journey","author":"Lockwood, Ingersoll","year":null,"download_count":27005,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/war-stories":{"post":{"operationId":"war_stories","summary":"Curated reading list on War stories for tutoring agents, quiz generators, and reading apps — 307 public-domain books (e.","description":"Curated reading list on War stories for tutoring agents, quiz generators, and reading apps — 307 public-domain books (e.g. A farewell to arms, A Tale of Two Cities, War and Peace). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"War stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":75201,"title":"A farewell to arms","author":"Hemingway, Ernest","year":null,"download_count":40474,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/western-stories":{"post":{"operationId":"western_stories","summary":"Curated reading list on Western stories for tutoring agents, quiz generators, and reading apps — 695 public-domain books","description":"Curated reading list on Western stories for tutoring agents, quiz generators, and reading apps — 695 public-domain books (e.g. The Treasure of Pearls: A Romance of Adventures in California, That Girl Montana, 'Firebrand' Trevison). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Western stories","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":46276,"title":"The Treasure of Pearls: A Romance of Adventures in California","author":"Aimard, Gustave","year":null,"download_count":45520,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/world-war-1914-1918-fiction":{"post":{"operationId":"world_war_1914_1918_fiction","summary":"Curated reading list on World War, 1914-1918 -- Fiction for tutoring agents, quiz generators, and reading apps — 175 pub","description":"Curated reading list on World War, 1914-1918 -- Fiction for tutoring agents, quiz generators, and reading apps — 175 public-domain books (e.g. That Which Hath Wings: A Novel of the Day, A farewell to arms, The Girl Philippa). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"World War, 1914-1918 -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":51428,"title":"That Which Hath Wings: A Novel of the Day","author":"Dehan, Richard","year":null,"download_count":45295,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/world-war-1914-1918":{"post":{"operationId":"world_war_1914_1918","summary":"Curated reading list on World War, 1914-1918 for tutoring agents, quiz generators, and reading apps — 136 public-domain ","description":"Curated reading list on World War, 1914-1918 for tutoring agents, quiz generators, and reading apps — 136 public-domain books (e.g. World's War Events, Vol. I, World's War Events, Vol. II, Waiting for Daylight). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"World War, 1914-1918","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":25962,"title":"World's War Events, Vol. I","author":"Unknown","year":null,"download_count":9095,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/world-war-i":{"post":{"operationId":"world_war_i","summary":"Curated reading list on World War I for tutoring agents, quiz generators, and reading apps — 374 public-domain books (e.","description":"Curated reading list on World War I for tutoring agents, quiz generators, and reading apps — 374 public-domain books (e.g. Mr. Standfast, Gallipoli Diary, Volume 2, World's War Events, Vol. I). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"World War I","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":560,"title":"Mr. Standfast","author":"Buchan, John","year":null,"download_count":27453,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/young-men-fiction":{"post":{"operationId":"young_men_fiction","summary":"Curated shelf: Young men -- Fiction — 11 public-domain books including Great Expectations, David Copperfield, A Portrait","description":"Curated shelf: Young men -- Fiction — 11 public-domain books including Great Expectations, David Copperfield, A Portrait of the Artist as a Young Man. Returns a ranked list with drill-down routes for full-text retrieval. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Young men -- Fiction","count":5,"coverage":{"indexed":860,"target":860},"books":[{"book_id":1400,"title":"Great Expectations","author":"Dickens, Charles, 1812-1870","year":null,"download_count":12892,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/young-women-fiction":{"post":{"operationId":"young_women_fiction","summary":"Curated reading list on Young women -- Fiction for tutoring agents, quiz generators, and reading apps — 424 public-domai","description":"Curated reading list on Young women -- Fiction for tutoring agents, quiz generators, and reading apps — 424 public-domain books (e.g. Pride and Prejudice, A Room with a View, Middlemarch). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Young women -- Fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":1342,"title":"Pride and Prejudice","author":"Austen, Jane","year":null,"download_count":136926,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/youth-conduct-of-life-juvenile-fiction":{"post":{"operationId":"youth_conduct_of_life_juvenile_fiction","summary":"Curated reading list on Youth -- Conduct of life -- Juvenile fiction for tutoring agents, quiz generators, and reading a","description":"Curated reading list on Youth -- Conduct of life -- Juvenile fiction for tutoring agents, quiz generators, and reading apps — 203 public-domain books (e.g. Baron Trump's Marvellous Underground Journey, Fighting for fortune : $b or, Making a place for himself, The Telegraph Messenger Boy; Or, The Straight Road to Success). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Youth -- Conduct of life -- Juvenile fiction","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":57426,"title":"Baron Trump's Marvellous Underground Journey","author":"Lockwood, Ingersoll","year":null,"download_count":27005,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}},"/z":{"post":{"operationId":"z","summary":"Curated reading list on Z for tutoring agents, quiz generators, and reading apps — 541 public-domain books (e.g. The Boo","description":"Curated reading list on Z for tutoring agents, quiz generators, and reading apps — 541 public-domain books (e.g. The Book-Hunter A New Edition, with a Memoir of the Author, The Care of Books, Bookbinding, and the Care of Books A Handbook for Amateurs, Bookbinders & Librarians). Full-text retrieval with drill-down routes for chapters, quotes, and citations. No license, no API key required.","tags":["shelves"],"security":[],"x-payment-info":{"protocols":[{"x402":{}},{"mpp":{}}],"price":{"mode":"fixed","currency":"USD","amount":"0.003"},"offers":[{"intent":"charge","method":"evm","amount":"3000","currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}]},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Max books to return (default 20, max 50)"}},"required":[]},"example":{"limit":5}}}},"responses":{"200":{"description":"Result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShelvesResponse"},"example":{"shelf":"Z","count":5,"coverage":{"indexed":61015,"target":61015},"books":[{"book_id":22136,"title":"The Book-Hunter A New Edition, with a Memoir of the Author","author":"Burton, John Hill","year":null,"download_count":15798,"subjects":[]}],"drill_down":["/book-metadata","/book-chapter","/book-quotes","/literature-search"]}}}},"402":{"description":"Payment Required"}}}}},"provider":{"name":"ForgeMesh Labs","catalog":"POST https://x402.forgemesh.io/agent-service-directory ($0.05)","fleet":"12 x402 services and counting, 500+ paid endpoints, from $0.001 — one wallet, no signup, atomic USDC settlement on Base. Free index: https://x402.forgemesh.io/llms.txt","card":"Soulbound Reader's Card (ERC-721 on Base) minted to the paying wallet: POST https://library.forgemesh.io/library-card ($0.001, one per wallet)"}}