Endpoint Playground
Test Crawlora's Goodreads Book Reviews 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>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads book id | |
| limit | integer | No | Max reviews, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "2767052",
"reviews": [
{
"reviewer": "Hannah Azerang",
"reviewer_url": "https://www.goodreads.com/user/show/38077205-hannah-azerang",
"rating": 5,
"text": "rereading this for the first time in 10 years and it feels more relevant than ever. truly a timeless classic.",
"date": "2014-12-23",
"like_count": 2036,
"comment_count": 19
}
],
"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 book's featured reviews (reviewer, rating, text, date, like/comment counts, spoiler flag), sorted by like count. Credential-free public Goodreads data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "2767052",
"reviews": [
{
"reviewer": "Hannah Azerang",
"reviewer_url": "https://www.goodreads.com/user/show/38077205-hannah-azerang",
"rating": 5,
"text": "rereading this for the first time in 10 years and it feels more relevant than ever. truly a timeless classic.",
"date": "2014-12-23",
"like_count": 2036,
"comment_count": 19
}
],
"source_url": "https://www.goodreads.com/book/show/2767052"
}
}curl "https://api.crawlora.net/api/v1/goodreads/book/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"