Endpoint Playground
Test Crawlora's Goodreads Author 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/author/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads author id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "153394",
"name": "Suzanne Collins",
"birth_date": "August 11, 1962",
"website": "http://suzannecollinsbooks.com/",
"genres": [
"Fiction",
"Science Fiction & Fantasy",
"Young Adult"
],
"about": "Since 1991, Suzanne Collins has been busy writing for children's television...",
"image_url": "https://images.gr-assets.com/authors/1630199330p5/153394.jpg",
"average_rating": 4.3,
"ratings_count": 21497265,
"reviews_count": 977620,
"uri": "https://www.goodreads.com/author/show/153394",
"source_url": "https://www.goodreads.com/author/show/153394"
}
}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 normalized Goodreads author profile: bio, birth/death dates, website, genres, photo, and aggregate rating stats. Credential-free public Goodreads data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "153394",
"name": "Suzanne Collins",
"birth_date": "August 11, 1962",
"website": "http://suzannecollinsbooks.com/",
"genres": [
"Fiction",
"Science Fiction & Fantasy",
"Young Adult"
],
"about": "Since 1991, Suzanne Collins has been busy writing for children's television...",
"image_url": "https://images.gr-assets.com/authors/1630199330p5/153394.jpg",
"average_rating": 4.3,
"ratings_count": 21497265,
"reviews_count": 977620,
"uri": "https://www.goodreads.com/author/show/153394",
"source_url": "https://www.goodreads.com/author/show/153394"
}
}curl "https://api.crawlora.net/api/v1/goodreads/author/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"