Endpoint Playground
Test Crawlora's Goodreads Author Quotes 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>/quotes" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Goodreads author id | |
| page | integer | No | 1-based page number, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"author_id": "153394",
"page": 1,
"quotes": [
{
"id": "290707",
"text": "“You love me. Real or not real?\"I tell him, \"Real.”",
"author": "Suzanne Collins",
"book_title": "Mockingjay",
"book_id": "7260188",
"work_id": "8812783",
"tags": [
"katniss",
"love",
"peeta"
],
"likes": 28863,
"uri": "https://www.goodreads.com/quotes/290707-you-love-me-real-or-not-real-i-tell-him"
}
],
"source_url": "https://www.goodreads.com/author/quotes/153394?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 an author's paginated attributed-quotes list (quote text, tags, like count, and — when the quote is credited to a specific book — that book's title, id, and work id). Credential-free public Goodreads data.
{
"code": 200,
"msg": "OK",
"data": {
"author_id": "153394",
"page": 1,
"quotes": [
{
"id": "290707",
"text": "“You love me. Real or not real?\"I tell him, \"Real.”",
"author": "Suzanne Collins",
"book_title": "Mockingjay",
"book_id": "7260188",
"work_id": "8812783",
"tags": [
"katniss",
"love",
"peeta"
],
"likes": 28863,
"uri": "https://www.goodreads.com/quotes/290707-you-love-me-real-or-not-real-i-tell-him"
}
],
"source_url": "https://www.goodreads.com/author/quotes/153394?page=1"
}
}curl "https://api.crawlora.net/api/v1/goodreads/author/<id>/quotes" \
-H "x-api-key: $CRAWLORA_API_KEY"