Endpoint Playground
Test Crawlora's Goodreads List 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/list/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads list id | |
| page | integer | No | 1-based page number, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1",
"title": "Best Books Ever",
"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": "1885",
"title": "Pride and Prejudice",
"author": "Jane Austen",
"average_rating": 4.3,
"ratings_count": 4953851,
"uri": "https://www.goodreads.com/book/show/1885.Pride_and_Prejudice"
}
],
"source_url": "https://www.goodreads.com/list/show/1?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 a Goodreads Listopia list (ranked book list) by id, paginated. Credential-free public Goodreads data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1",
"title": "Best Books Ever",
"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": "1885",
"title": "Pride and Prejudice",
"author": "Jane Austen",
"average_rating": 4.3,
"ratings_count": 4953851,
"uri": "https://www.goodreads.com/book/show/1885.Pride_and_Prejudice"
}
],
"source_url": "https://www.goodreads.com/list/show/1?page=1"
}
}curl "https://api.crawlora.net/api/v1/goodreads/list/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"