quotes-home
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:**
```json
{
"queryURL": "https://www.goodreads.com/quotes"
}
```
---
## Response
### 200 Success
Returns a JSON object containing featured and popular quotes from the Goodreads quotes home page.
```json
{
"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 |
Request
This endpoint expects an object.
queryURL
Response
OK
status
source
scrapeURL
name
quotes
popularTags
lastScraped

