---
title: "similar-scraper"
method: POST
path: "/api/similar-scraper"
---

# similar-scraper

`POST /api/similar-scraper`

## Similar Scraper

Scrapes similar and related book recommendations from a Goodreads book page using a direct book URL. Returns structured information about books that Goodreads recommends as similar reads.

---

## Request

**Method:** `POST`  
**URL:** `{{Instance Domain}}/api/similar-scraper`

### 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 book page URL to scrape similar books from (e.g. `https://www.goodreads.com/book/show/5907`) |

**Example Body:**

```json
{
  "queryURL": "https://www.goodreads.com/book/show/5907"
}
```

---

## Response

### 200 Success

Returns a JSON object containing a list of similar books scraped from the 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 |
| similarBooks | array | List of similar/related books recommended on the page |

## Request body

- object
  - `bookID` string, required
  - `legacyBookID` unknown

## Response `200`

OK

- object
  - `status` string, required
  - `source` string, uri, required
  - `scrapeURL` string, uri, required
  - `books` object[], required
    - `id` integer, required
    - `cover` string, uri, required
    - `title` string, required
    - `bookURL` string, required
    - `rating` string, required
    - `ratingsCount` integer, required
    - `author` 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
- **2026-06-13** `ff140c26cd55` — 1 info
  - added the new optional request property `legacyBookID`

[Full history](https://skmtc.dev/nesaku/apis/api-endpoints/changes/api/similar-scraper/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)
