Endpoint Playground
Test Crawlora's Facet Goodreads books 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/facets?facet=genres" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | genres | Facet enum: genres, format, language, publisher, primary_author, primary_author_id, series_name, publication_year, run_id |
| q | string | No | Full-text query over title, author and description, max 256 characters | |
| genre | string | No | Exact genre filter, max 128 characters | |
| format | string | No | Exact format filter, max 128 characters | |
| language | string | No | Exact language filter, max 128 characters | |
| publisher | string | No | Exact publisher filter, max 128 characters | |
| author | string | No | Exact author name filter, max 128 characters | |
| author_id | string | No | Exact Goodreads author id filter, max 128 characters | |
| series | string | No | Exact series name filter, max 128 characters | |
| isbn | string | No | Exact ISBN-10 filter, max 128 characters | |
| isbn13 | string | No | Exact ISBN-13 filter, max 128 characters | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| min_rating | number | No | Minimum average rating, 0 through 5 | |
| min_ratings_count | integer | No | Minimum number of ratings | |
| min_pages | integer | No | Minimum page count | |
| max_pages | integer | No | Maximum page count | |
| min_publication_year | integer | No | Minimum publication year | |
| max_publication_year | integer | No | Maximum publication year |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "goodreads-books",
"facet": "genres",
"items": [
{
"value": "Fiction",
"count": 412
},
{
"value": "Fantasy",
"count": 238
}
]
}
}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 terms aggregation counts for the Goodreads books dataset. Facet enum: `genres`, `format`, `language`, `publisher`, `primary_author`, `primary_author_id`, `series_name`, `publication_year`, `run_id`. 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": {
"dataset": "goodreads-books",
"facet": "genres",
"items": [
{
"value": "Fiction",
"count": 412
},
{
"value": "Fantasy",
"count": 238
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/goodreads-books/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"