Endpoint Playground
Test Crawlora's Goodreads Book API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/goodreads/book/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads book id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "2767052",
"title": "The Hunger Games",
"description": "Winning means fame and fortune. Losing means certain death. The Hunger Games have begun...",
"authors": [
{
"name": "Suzanne Collins",
"role": "Author",
"url": "https://www.goodreads.com/author/show/153394.Suzanne_Collins"
}
],
"series": "The Hunger Games #1",
"genres": [
"Young Adult",
"Dystopia",
"Fiction",
"Fantasy",
"Science Fiction"
],
"format": "Hardcover",
"pages": 374,
"publisher": "Scholastic Press",
"publication_date": "2008-10-14",
"isbn": "0439023483",
"isbn13": "9780439023481",
"language": "English",
"image_url": "https://m.media-amazon.com/images/S/compressed.photo.goodreads.com/books/1586722975i/2767052.jpg",
"rating": {
"average": 4.35,
"ratings_count": 10177796,
"reviews_count": 272857,
"distribution": {
"one_star": 133619,
"two_star": 242008,
"three_star": 1113038,
"four_star": 3086914,
"five_star": 5602217
}
},
"uri": "https://www.goodreads.com/book/show/2767052-the-hunger-games",
"source_url": "https://www.goodreads.com/book/show/2767052"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a normalized Goodreads book: description, authors, series, genres, format, pages, publisher, publication date, ISBNs, and aggregate rating with the full 1-5 star distribution. Credential-free public Goodreads data (goodreads.com), parsed from the book page's embedded GraphQL cache.
{
"code": 200,
"msg": "OK",
"data": {
"id": "2767052",
"title": "The Hunger Games",
"description": "Winning means fame and fortune. Losing means certain death. The Hunger Games have begun...",
"authors": [
{
"name": "Suzanne Collins",
"role": "Author",
"url": "https://www.goodreads.com/author/show/153394.Suzanne_Collins"
}
],
"series": "The Hunger Games #1",
"genres": [
"Young Adult",
"Dystopia",
"Fiction",
"Fantasy",
"Science Fiction"
],
"format": "Hardcover",
"pages": 374,
"publisher": "Scholastic Press",
"publication_date": "2008-10-14",
"isbn": "0439023483",
"isbn13": "9780439023481",
"language": "English",
"image_url": "https://m.media-amazon.com/images/S/compressed.photo.goodreads.com/books/1586722975i/2767052.jpg",
"rating": {
"average": 4.35,
"ratings_count": 10177796,
"reviews_count": 272857,
"distribution": {
"one_star": 133619,
"two_star": 242008,
"three_star": 1113038,
"four_star": 3086914,
"five_star": 5602217
}
},
"uri": "https://www.goodreads.com/book/show/2767052-the-hunger-games",
"source_url": "https://www.goodreads.com/book/show/2767052"
}
}curl "https://api.crawlora.net/api/v1/goodreads/book/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"