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

# series-scraper

`POST /api/series-scraper`

## Series Scraper

Scrapes series information and all books belonging to a series from a Goodreads series page using a direct series URL. Returns structured metadata about the series and each book within it.

---

## Request

**Method:** `POST`  
**URL:** `{{Instance Domain}}/api/series-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 series page URL to scrape (e.g. `https://www.goodreads.com/series/45175-harry-potter`) |

**Example Body:**

```json
{
  "queryURL": "https://www.goodreads.com/series/45175-harry-potter"
}
```

---

## Response

### 200 Success

Returns a JSON object containing the series metadata and all books in the series.

```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 |
| seriesTitle | string | Name of the book series |
| seriesDescription | string | Description or overview of the series |
| books | array | Ordered list of books in the series, each with title, author, cover image, and Goodreads URL |

## Request body

- object
  - `queryURL` string, uri, required

## Response `200`

OK

## 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/series-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)
