Endpoint Playground
Test Crawlora's Goodreads Book Editions 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>/editions" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads book id | |
| page | integer | No | 1-based page number, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"book_id": "2767052",
"work_id": "2792775",
"title": "The Hunger Games",
"page": 1,
"editions": [
{
"book_id": "2767052",
"title": "The Hunger Games (The Hunger Games, #1)",
"authors": [
"Suzanne Collins"
],
"format": "Hardcover",
"pages": 374,
"publication_date": "October 14th 2008",
"publisher": "Scholastic Press",
"isbn": "0439023483",
"isbn13": "9780439023481",
"asin": "0439023483",
"language": "English",
"average_rating": 4.35,
"ratings_count": 9771855,
"uri": "https://www.goodreads.com/book/show/2767052-the-hunger-games"
}
],
"source_url": "https://www.goodreads.com/work/editions/2792775?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 work's paginated edition list (per-edition book id, format, page count, publication date, publisher, ISBN/ISBN13/ASIN, language, and rating) — every other translation, printing, and format of the requested book id. Goodreads keys editions by a separate "work id", not the book id in the path, so this makes one extra internal request to resolve it; requests against a book with no editions data return an upstream error.
{
"code": 200,
"msg": "OK",
"data": {
"book_id": "2767052",
"work_id": "2792775",
"title": "The Hunger Games",
"page": 1,
"editions": [
{
"book_id": "2767052",
"title": "The Hunger Games (The Hunger Games, #1)",
"authors": [
"Suzanne Collins"
],
"format": "Hardcover",
"pages": 374,
"publication_date": "October 14th 2008",
"publisher": "Scholastic Press",
"isbn": "0439023483",
"isbn13": "9780439023481",
"asin": "0439023483",
"language": "English",
"average_rating": 4.35,
"ratings_count": 9771855,
"uri": "https://www.goodreads.com/book/show/2767052-the-hunger-games"
}
],
"source_url": "https://www.goodreads.com/work/editions/2792775?page=1"
}
}curl "https://api.crawlora.net/api/v1/goodreads/book/<id>/editions" \
-H "x-api-key: $CRAWLORA_API_KEY"