Gutenberg
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
gutenberg-metadata.ts
https://aleaf--83d3ab5a34ea11f088969e149126039e.web.val.run
This API provides a simple way to retrieve metadata about books from Project Gutenberg in JSON format.
The API has a single endpoint that accepts a book ID and returns metadata about that book.
GET /?id={book_id}
Where {book_id}
is the Project Gutenberg book ID.
GET /?id=1342
This will return metadata for "Pride and Prejudice" by Jane Austen (book ID 1342).
The API returns a JSON object with the following fields (when available):
id
: The Project Gutenberg book IDtitle
: The title of the bookauthor
: The author of the bookpublicationDate
: The publication datelanguage
: The language of the booksubjects
: An array of subject categoriesdownloadLinks
: Links to download the book in various formatssource
: Link to the original Project Gutenberg page
400 Bad Request
: Missing or invalid book ID404 Not Found
: Book with the specified ID not found500 Internal Server Error
: Server-side error
GET /?id=1342
{ "id": "1342", "source": "https://www.gutenberg.org/ebooks/1342", "title": "Pride and Prejudice", "author": "Austen, Jane", "publicationDate": "1998-06-01", "language": "English", "subjects": [ "England -- Fiction", "Courtship -- Fiction", "Young women -- Fiction", "Love stories", "Domestic fiction", "Sisters -- Fiction", "Social classes -- Fiction" ], "downloadLinks": { "html": "https://www.gutenberg.org/files/1342/1342-h/1342-h.htm", "text": "https://www.gutenberg.org/files/1342/1342.txt", "epub": "https://www.gutenberg.org/ebooks/1342.epub.images", "kindle": "https://www.gutenberg.org/ebooks/1342.kindle.images" } }
- This API scrapes data from Project Gutenberg's website and may break if their site structure changes
- Results are cached for 24 hours to reduce load on Project Gutenberg's servers
- Please be respectful of Project Gutenberg's resources and don't make excessive requests