Endpoint Playground
Test Crawlora's Facet Goodreads authors 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-authors/facets?facet=genres" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | genres | Facet enum: genres, run_id |
| q | string | No | Full-text query over name, about and genres, max 256 characters | |
| name | string | No | Exact author name filter, max 128 characters | |
| genre | string | No | Exact genre 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 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "goodreads-authors",
"facet": "genres",
"items": [
{
"value": "Fiction",
"count": 312
},
{
"value": "Fantasy",
"count": 180
}
]
}
}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 authors dataset. Facet enum: `genres`, `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-authors",
"facet": "genres",
"items": [
{
"value": "Fiction",
"count": 312
},
{
"value": "Fantasy",
"count": 180
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/goodreads-authors/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"