quotes
quotes-home
Quotes Home
Scrapes featured and popular quotes from the Goodreads quotes home page using the quotes home URL. Returns a curated collection of trending and highlighted quotes across all topics.
Request
Method: POST
URL: {{Instance Domain}}/api/quotes/home
Headers
| Key | Value | Description |
|---|---|---|
| Content-Type | application/json | Indicates the request body is JSON |
Body
| Field | Type | Required | Description |
|---|---|---|---|
| queryURL | string | Yes | The full Goodreads quotes home page URL to scrape (e.g. https://www.goodreads.com/quotes) |
Example Body:
{
"queryURL": "https://www.goodreads.com/quotes"
}
Response
200 Success
Returns a JSON object containing featured and popular quotes from the Goodreads quotes home page.
{
"status": "Received",
"statusCode": 200,
...
}
Response Field Descriptions
| Field | Type | Description |
|---|---|---|
| status | string | Human-readable status message |
| statusCode | number | HTTP status code of the response |
| quotes | array | List of featured/popular quotes, each with quote text, author, source book, and like count |
post/api/quotes/home
Request body
Response
OK