Endpoint Playground
Test Crawlora's Get a Goodreads book from dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/goodreads-books/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads book id, e.g. 2767052 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "2767052",
"title": "The Hunger Games",
"authors": [
"Suzanne Collins"
],
"author_ids": [
"153394"
],
"primary_author": "Suzanne Collins",
"primary_author_id": "153394",
"series": "The Hunger Games #1",
"series_name": "The Hunger Games",
"genres": [
"Young Adult",
"Fiction",
"Dystopia"
],
"format": "Hardcover",
"pages": 374,
"publisher": "Scholastic Press",
"publication_date": "2008-10-14",
"publication_year": 2008,
"isbn": "0439023483",
"isbn13": "9780439023481",
"language": "English",
"rating_average": 4.35,
"ratings_count": 10189669,
"reviews_count": 272857,
"rating_one_star": 159068,
"rating_two_star": 329575,
"rating_three_star": 1568722,
"rating_four_star": 2854927,
"rating_five_star": 5277377,
"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 one crawled Goodreads book record by id from dataset id enum value `goodreads-books`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"id": "2767052",
"title": "The Hunger Games",
"authors": [
"Suzanne Collins"
],
"author_ids": [
"153394"
],
"primary_author": "Suzanne Collins",
"primary_author_id": "153394",
"series": "The Hunger Games #1",
"series_name": "The Hunger Games",
"genres": [
"Young Adult",
"Fiction",
"Dystopia"
],
"format": "Hardcover",
"pages": 374,
"publisher": "Scholastic Press",
"publication_date": "2008-10-14",
"publication_year": 2008,
"isbn": "0439023483",
"isbn13": "9780439023481",
"language": "English",
"rating_average": 4.35,
"ratings_count": 10189669,
"reviews_count": 272857,
"rating_one_star": 159068,
"rating_two_star": 329575,
"rating_three_star": 1568722,
"rating_four_star": 2854927,
"rating_five_star": 5277377,
"source_url": "https://www.goodreads.com/book/show/2767052"
}
}curl "https://api.crawlora.net/api/v1/datasets/goodreads-books/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"