---
title: "quotes-home"
method: POST
path: "/api/quotes/home"
tags: ["quotes"]
---

# quotes-home

`POST /api/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 body

- object
  - `queryURL` string, uri, required

## Response `200`

OK

- object
  - `status` string, required
  - `source` string, uri, required
  - `scrapeURL` string, uri, required
  - `name` string, required
  - `quotes` object[], required
    - `id` integer, required
    - `imgURL` string, required
    - `img` string, uri, required
    - `imgAlt` string, required
    - `text` string, required
    - `author` string, required
    - `book` string, required
    - `slug` string, required
    - `likes` string, required
  - `popularTags` object[], required
    - `id` integer, required
    - `url` string, required
    - `name` string, required
  - `lastScraped` string, date-time, required

## Changes

- **2026-06-15** `6ef082114b12` — 1 info
  - endpoint added
- **2026-06-15** `9188f0ce7be6` — 1 breaking
  - api path removed without deprecation
- **2026-06-15** `6ef082114b12` — 1 info
  - endpoint added
- **2026-06-14** `539ea0e4fa2a` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/nesaku/apis/api-endpoints/changes/api/quotes/home/post.md)

---

[API](https://skmtc.dev/nesaku/apis/api-endpoints.md) · [All operations](https://skmtc.dev/nesaku/apis/api-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nesaku/api-endpoints/revisions/182d9252d879/schema)
