Endpoint Playground
Test Crawlora's Goodreads Author Books 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/author/<id>/books" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads author id | |
| page | integer | No | 1-based page number, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"author_id": "153394",
"page": 1,
"books": [
{
"id": "2767052",
"title": "The Hunger Games (The Hunger Games, #1)",
"author": "Suzanne Collins",
"average_rating": 4.35,
"ratings_count": 10177818,
"uri": "https://www.goodreads.com/book/show/2767052-the-hunger-games"
},
{
"id": "6148028",
"title": "Catching Fire (The Hunger Games, #2)",
"author": "Suzanne Collins",
"average_rating": 4.36,
"ratings_count": 4285043,
"uri": "https://www.goodreads.com/book/show/6148028-catching-fire"
}
],
"source_url": "https://www.goodreads.com/author/list/153394?page=1"
}
}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 an author's paginated works list (title, author, average rating, ratings count). Credential-free public Goodreads data.
{
"code": 200,
"msg": "OK",
"data": {
"author_id": "153394",
"page": 1,
"books": [
{
"id": "2767052",
"title": "The Hunger Games (The Hunger Games, #1)",
"author": "Suzanne Collins",
"average_rating": 4.35,
"ratings_count": 10177818,
"uri": "https://www.goodreads.com/book/show/2767052-the-hunger-games"
},
{
"id": "6148028",
"title": "Catching Fire (The Hunger Games, #2)",
"author": "Suzanne Collins",
"average_rating": 4.36,
"ratings_count": 4285043,
"uri": "https://www.goodreads.com/book/show/6148028-catching-fire"
}
],
"source_url": "https://www.goodreads.com/author/list/153394?page=1"
}
}curl "https://api.crawlora.net/api/v1/goodreads/author/<id>/books" \
-H "x-api-key: $CRAWLORA_API_KEY"