quotes
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:
{
"queryURL": "https://www.goodreads.com/quotes/tag/love"
}
Response
200 Success
Returns a JSON object containing quotes scraped from the specified tag 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 |
| 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 |
post/api/quotes/slug
Request body
Response
OK