quotes-slug
quotes-slug
## Quotes Search
Scrapes quotes from a Goodreads quotes tag or slug page using a direct tag URL. Returns a collection of quotes associated with the specified tag or topic.
---
## Request
**Method:** `POST`
**URL:** `{{Instance Domain}}/api/quotes/slug`
### 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 tag page URL to scrape (e.g. `https://www.goodreads.com/quotes/tag/love`) |
**Example Body:**
```json
{
"queryURL": "https://www.goodreads.com/quotes/tag/love"
}
```
---
## Response
### 200 Success
Returns a JSON object containing quotes scraped from the specified tag 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 |
| tag | string | The tag or slug used to filter quotes |
| quotes | array | List of quotes from the tag page, each with quote text, author, and like count |
Request
This endpoint expects an object.
queryURL
Response
OK
status
source
scrapeURL
name
quotes
popularTags
lastScraped

