> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.biblioreads.eu.org/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.biblioreads.eu.org/_mcp/server.

# author-books-scraper

POST https://biblioreads.eu.org/api/author/books
Content-Type: application/json

## Author Books Scraper

Scrapes the list of books written by a specific Goodreads author using a direct author books page URL. Returns structured metadata for all books listed on the author's Goodreads profile.

***

## Request

**Method:** `POST`\
**URL:** `{{Instance Domain}}/api/author/books`

### 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 author books list URL to scrape (e.g. `https://www.goodreads.com/author/list/1077326.J_K_Rowling`) |

**Example Body:**

```json
{
  "queryURL": "https://www.goodreads.com/author/list/1077326.J_K_Rowling"
}
```

***

## Response

### 200 Success

Returns a JSON object containing the list of books by the specified author.

```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                                                     |
| author     | string | Name of the author whose books were scraped                                          |
| books      | array  | List of books by the author, each with title, cover image, rating, and Goodreads URL |

Reference: https://docs.biblioreads.eu.org/api-endpoints/author/author-books-scraper

## Request

### Body (application/json)

- `page` (integer, required)
- `queryURL` (string, required)

## Response

### 200

OK

- `status` (string, required)
- `source` (string, required)
- `scrapeURL` (string, required)
- `title` (string, required)
- `desc` (string, required)
- `books` (list of object, required)
  - `id` (integer, required)
  - `cover` (string, required)
  - `title` (string, required)
  - `bookURL` (string, required)
  - `author` (string, required)
  - `authorURL` (string, required)
  - `rating` (string, required)
- `nextPage` (string, required)
- `lastScraped` (datetime, required)

## Examples

**Request**

```json
{
  "page": 1,
  "queryURL": "https://www.goodreads.com/author/list/3389.Stephen_King"
}
```

**Response**

```json
{
  "status": "Received",
  "source": "https://github.com/nesaku/biblioreads",
  "scrapeURL": "https://www.goodreads.com/author/list/3389.Stephen_King?page=1&per_page=100",
  "title": "Books by Stephen  King",
  "desc": "\n    Stephen  King\n    Average rating 4.07 ·\n    22,976,656 ratings ·\n    1,215,085 reviews ·\n    shelved 44,992,444 times\n\n  ",
  "books": [
    {
      "id": 1,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1353277730i/11588._SY75_.jpg",
      "title": "The Shining (The Shining, #1)",
      "bookURL": "/book/show/11588.The_Shining",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.28 avg rating — 1,744,789 ratings"
    },
    {
      "id": 2,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1334416842i/830502._SY75_.jpg",
      "title": "It",
      "bookURL": "/book/show/830502.It",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.24 avg rating — 1,300,358 ratings"
    },
    {
      "id": 3,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1674820514i/87591651._SX50_.jpg",
      "title": "The Stand",
      "bookURL": "/book/show/87591651-the-stand",
      "author": "Stephen  KingGrover Gardner",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.35 avg rating — 852,533 ratings"
    },
    {
      "id": 4,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1746142586i/10614._SY75_.jpg",
      "title": "Misery",
      "bookURL": "/book/show/10614.Misery",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.22 avg rating — 842,631 ratings"
    },
    {
      "id": 5,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1771367607i/10592._SY75_.jpg",
      "title": "Carrie",
      "bookURL": "/book/show/10592.Carrie",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.99 avg rating — 868,589 ratings"
    },
    {
      "id": 6,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327876792i/10644930._SY75_.jpg",
      "title": "11/22/63",
      "bookURL": "/book/show/10644930-11-22-63",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.35 avg rating — 687,443 ratings"
    },
    {
      "id": 7,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1480069533i/33124137._SY75_.jpg",
      "title": "Pet Sematary",
      "bookURL": "/book/show/33124137-pet-sematary",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.09 avg rating — 719,422 ratings"
    },
    {
      "id": 8,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1738025067i/11590._SY75_.jpg",
      "title": "’Salem’s Lot",
      "bookURL": "/book/show/11590._Salem_s_Lot",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.10 avg rating — 675,099 ratings"
    },
    {
      "id": 9,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1770544533i/247642509._SY75_.jpg",
      "title": "The Gunslinger (Dark Tower, #1)",
      "bookURL": "/book/show/247642509-the-gunslinger",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.91 avg rating — 674,615 ratings"
    },
    {
      "id": 10,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1373903563i/11566._SY75_.jpg",
      "title": "The Green Mile",
      "bookURL": "/book/show/11566.The_Green_Mile",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.49 avg rating — 372,789 ratings"
    },
    {
      "id": 11,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524596540i/36124936._SY75_.jpg",
      "title": "The Outsider (Holly Gibney #1)",
      "bookURL": "/book/show/36124936-the-outsider",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.02 avg rating — 393,203 ratings"
    },
    {
      "id": 12,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1468705326i/18775247._SY75_.jpg",
      "title": "Mr. Mercedes (Bill Hodges #1)",
      "bookURL": "/book/show/18775247-mr-mercedes",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.04 avg rating — 385,959 ratings"
    },
    {
      "id": 13,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549241208i/43798285._SY75_.jpg",
      "title": "The Institute",
      "bookURL": "/book/show/43798285-the-institute",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.19 avg rating — 353,145 ratings"
    },
    {
      "id": 14,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1647789287i/60177373._SY75_.jpg",
      "title": "Fairy Tale",
      "bookURL": "/book/show/60177373-fairy-tale",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.09 avg rating — 350,566 ratings"
    },
    {
      "id": 15,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436735207i/10569._SY75_.jpg",
      "title": "On Writing: A Memoir of the Craft",
      "bookURL": "/book/show/10569.On_Writing",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.34 avg rating — 324,159 ratings"
    },
    {
      "id": 16,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1511289992i/6320534._SY75_.jpg",
      "title": "Under the Dome",
      "bookURL": "/book/show/6320534-under-the-dome",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.93 avg rating — 328,726 ratings"
    },
    {
      "id": 17,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1370918050i/5094._SY75_.jpg",
      "title": "The Drawing of the Three (Dark Tower, #2)",
      "bookURL": "/book/show/5094.The_Drawing_of_the_Three",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.24 avg rating — 296,776 ratings"
    },
    {
      "id": 18,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1510335480i/16130549._SY75_.jpg",
      "title": "Doctor Sleep (The Shining, #2)",
      "bookURL": "/book/show/16130549-doctor-sleep",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.13 avg rating — 304,110 ratings"
    },
    {
      "id": 19,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394208144i/10603._SY75_.jpg",
      "title": "Cujo",
      "bookURL": "/book/show/10603.Cujo",
      "author": "Stephen  KingMaría Antonia Menini",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.81 avg rating — 327,877 ratings"
    },
    {
      "id": 20,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1315767817i/107291._SY75_.jpg",
      "title": "Needful Things",
      "bookURL": "/book/show/107291.Needful_Things",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.99 avg rating — 284,326 ratings"
    },
    {
      "id": 21,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1532334476i/34084._SY75_.jpg",
      "title": "The Waste Lands (Dark Tower, #3)",
      "bookURL": "/book/show/34084.The_Waste_Lands",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.25 avg rating — 252,763 ratings"
    },
    {
      "id": 22,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1663053062i/10629._SY75_.jpg",
      "title": "Christine",
      "bookURL": "/book/show/10629.Christine",
      "author": "Stephen  KingMarie Milpois",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.86 avg rating — 267,774 ratings"
    },
    {
      "id": 23,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1283509622i/11573._SY75_.jpg",
      "title": "The Dead Zone",
      "bookURL": "/book/show/11573.The_Dead_Zone",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.97 avg rating — 251,117 ratings"
    },
    {
      "id": 24,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1592553161i/233667._SY75_.jpg",
      "title": "Firestarter",
      "bookURL": "/book/show/233667.Firestarter",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.92 avg rating — 250,676 ratings"
    },
    {
      "id": 25,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1763979040i/39662._SX50_.jpg",
      "title": "Different Seasons",
      "bookURL": "/book/show/39662.Different_Seasons",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.36 avg rating — 224,459 ratings"
    },
    {
      "id": 26,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327946510i/5096._SY75_.jpg",
      "title": "Wizard and Glass (Dark Tower, #4)",
      "bookURL": "/book/show/5096.Wizard_and_Glass",
      "author": "Stephen  KingDave McKean",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.27 avg rating — 224,780 ratings"
    },
    {
      "id": 27,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432828013i/10567._SY75_.jpg",
      "title": "Cell",
      "bookURL": "/book/show/10567.Cell",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.65 avg rating — 239,856 ratings"
    },
    {
      "id": 28,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1419360231i/4978._SY75_.jpg",
      "title": "Wolves of the Calla (Dark Tower, #5)",
      "bookURL": "/book/show/4978.Wolves_of_the_Calla",
      "author": "Stephen  KingBernie Wrightson",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.20 avg rating — 205,831 ratings"
    },
    {
      "id": 29,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1365592796i/10589._SY75_.jpg",
      "title": "Bag of Bones",
      "bookURL": "/book/show/10589.Bag_of_Bones",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.92 avg rating — 213,852 ratings"
    },
    {
      "id": 30,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1618151020i/56852407._SY75_.jpg",
      "title": "Billy Summers",
      "bookURL": "/book/show/56852407-billy-summers",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.18 avg rating — 199,027 ratings"
    },
    {
      "id": 31,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1372296329i/5091._SY75_.jpg",
      "title": "The Dark Tower (Dark Tower, #7)",
      "bookURL": "/book/show/5091.The_Dark_Tower",
      "author": "Stephen  KingMichael   Whelan",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.29 avg rating — 193,287 ratings"
    },
    {
      "id": 32,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1660820449i/10628._SY75_.jpg",
      "title": "Night Shift",
      "bookURL": "/book/show/10628.Night_Shift",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.04 avg rating — 201,725 ratings"
    },
    {
      "id": 33,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1674418461i/65916344._SY75_.jpg",
      "title": "Holly (Holly Gibney, #3)",
      "bookURL": "/book/show/65916344-holly",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.07 avg rating — 196,976 ratings"
    },
    {
      "id": 34,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1469092087i/23492589._SY75_.jpg",
      "title": "Finders Keepers (Bill Hodges Trilogy, #2)",
      "bookURL": "/book/show/23492589-finders-keepers",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.07 avg rating — 194,444 ratings"
    },
    {
      "id": 35,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1331317781i/813214._SY75_.jpg",
      "title": "The Mist",
      "bookURL": "/book/show/813214.The_Mist",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.93 avg rating — 186,249 ratings"
    },
    {
      "id": 36,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348154483i/13596166._SY75_.jpg",
      "title": "Joyland",
      "bookURL": "/book/show/13596166-joyland",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.93 avg rating — 183,509 ratings"
    },
    {
      "id": 37,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554221361i/5093._SY75_.jpg",
      "title": "Song of Susannah (Dark Tower, #6)",
      "bookURL": "/book/show/5093.Song_of_Susannah",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": "really liked it 4.00 avg rating — 179,183 ratings"
    },
    {
      "id": 38,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1611766265i/11570._SY75_.jpg",
      "title": "Dreamcatcher",
      "bookURL": "/book/show/11570.Dreamcatcher",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.66 avg rating — 188,423 ratings"
    },
    {
      "id": 39,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1722442797i/7278752._SY75_.jpg",
      "title": "Dolores Claiborne",
      "bookURL": "/book/show/7278752-dolores-claiborne",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.95 avg rating — 174,158 ratings"
    },
    {
      "id": 40,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1580235339i/11564._SY75_.jpg",
      "title": "The Girl Who Loved Tom Gordon",
      "bookURL": "/book/show/11564.The_Girl_Who_Loved_Tom_Gordon",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.64 avg rating — 182,309 ratings"
    },
    {
      "id": 41,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1511289068i/25526965._SY75_.jpg",
      "title": "End of Watch (Bill Hodges Trilogy, #3)",
      "bookURL": "/book/show/25526965-end-of-watch",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.10 avg rating — 161,534 ratings"
    },
    {
      "id": 42,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1678392358i/10585._SY75_.jpg",
      "title": "Insomnia",
      "bookURL": "/book/show/10585.Insomnia",
      "author": "Stephen  KingBettina Blanch Tyroller",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.83 avg rating — 170,854 ratings"
    },
    {
      "id": 43,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1297737756i/32692._SY75_.jpg",
      "title": "Gerald's Game",
      "bookURL": "/book/show/32692.Gerald_s_Game",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.59 avg rating — 181,988 ratings"
    },
    {
      "id": 44,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1596448456i/54798175._SY75_.jpg",
      "title": "Later",
      "bookURL": "/book/show/54798175-later",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.95 avg rating — 154,986 ratings"
    },
    {
      "id": 45,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394210331i/17660._SY75_.jpg",
      "title": "The Tommyknockers",
      "bookURL": "/book/show/17660.The_Tommyknockers",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.61 avg rating — 167,598 ratings"
    },
    {
      "id": 46,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395764566i/10584._SY75_.jpg",
      "title": "Desperation",
      "bookURL": "/book/show/10584.Desperation",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.86 avg rating — 155,736 ratings"
    },
    {
      "id": 47,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170530286i/59219._SX50_.jpg",
      "title": "The Talisman (The Talisman, #1)",
      "bookURL": "/book/show/59219.The_Talisman",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.10 avg rating — 145,222 ratings"
    },
    {
      "id": 48,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1542040067i/38355410._SX50_.jpg",
      "title": "Elevation",
      "bookURL": "/book/show/38355410-elevation",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.62 avg rating — 163,489 ratings"
    },
    {
      "id": 49,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430122353i/11597._SY75_.jpg",
      "title": "The Dark Half",
      "bookURL": "/book/show/11597.The_Dark_Half",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.81 avg rating — 154,641 ratings"
    },
    {
      "id": 50,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1660526231i/10611._SY75_.jpg",
      "title": "The Eyes of the Dragon",
      "bookURL": "/book/show/10611.The_Eyes_of_the_Dragon",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.94 avg rating — 147,674 ratings"
    },
    {
      "id": 51,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1660827280i/13440._SY75_.jpg",
      "title": "Skeleton Crew",
      "bookURL": "/book/show/13440.Skeleton_Crew",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.97 avg rating — 140,042 ratings"
    },
    {
      "id": 52,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1761089001i/472343._SY75_.jpg",
      "title": "Duma Key",
      "bookURL": "/book/show/472343.Duma_Key",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.99 avg rating — 139,472 ratings"
    },
    {
      "id": 53,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1510335323i/20926278._SY75_.jpg",
      "title": "Revival",
      "bookURL": "/book/show/20926278-revival",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.81 avg rating — 144,156 ratings"
    },
    {
      "id": 54,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1571399830i/46015758._SY75_.jpg",
      "title": "If It Bleeds (Holly Gibney #2)",
      "bookURL": "/book/show/46015758-if-it-bleeds",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.97 avg rating — 132,457 ratings"
    },
    {
      "id": 55,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524583257i/7912007._SY75_.jpg",
      "title": "Full Dark, No Stars",
      "bookURL": "/book/show/7912007-full-dark-no-stars",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.09 avg rating — 119,460 ratings"
    },
    {
      "id": 56,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1660826989i/10619._SY75_.jpg",
      "title": "Rose Madder",
      "bookURL": "/book/show/10619.Rose_Madder",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.76 avg rating — 125,996 ratings"
    },
    {
      "id": 57,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1321023197i/133266._SY75_.jpg",
      "title": "Four Past Midnight",
      "bookURL": "/book/show/133266.Four_Past_Midnight",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.95 avg rating — 117,175 ratings"
    },
    {
      "id": 58,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922876i/10579._SY75_.jpg",
      "title": "Everything's Eventual",
      "bookURL": "/book/show/10579.Everything_s_Eventual",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.97 avg rating — 110,363 ratings"
    },
    {
      "id": 59,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1374048926i/11602._SY75_.jpg",
      "title": "Hearts in Atlantis",
      "bookURL": "/book/show/11602.Hearts_in_Atlantis",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.87 avg rating — 104,309 ratings"
    },
    {
      "id": 60,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328001524i/12341557._SY75_.jpg",
      "title": "The Wind Through the Keyhole (Dark Tower, #4.5)",
      "bookURL": "/book/show/12341557-the-wind-through-the-keyhole",
      "author": "Stephen  KingJae Lee",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.13 avg rating — 95,618 ratings"
    },
    {
      "id": 61,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1699311050i/201242757._SY75_.jpg",
      "title": "You Like It Darker",
      "bookURL": "/book/show/201242757-you-like-it-darker",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.17 avg rating — 94,306 ratings"
    },
    {
      "id": 62,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1510335748i/34466922._SY75_.jpg",
      "title": "Sleeping Beauties",
      "bookURL": "/book/show/34466922-sleeping-beauties",
      "author": "Stephen  KingOwen King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.73 avg rating — 97,148 ratings"
    },
    {
      "id": 63,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1316346037i/10566._SY75_.jpg",
      "title": "Lisey's Story",
      "bookURL": "/book/show/10566.Lisey_s_Story",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.70 avg rating — 96,036 ratings"
    },
    {
      "id": 64,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1370950676i/10588._SY75_.jpg",
      "title": "Nightmares and Dreamscapes",
      "bookURL": "/book/show/10588.Nightmares_and_Dreamscapes",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.95 avg rating — 88,829 ratings"
    },
    {
      "id": 65,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1488303321i/34430839._SY75_.jpg",
      "title": "Gwendy's Button Box (The Button Box, #1)",
      "bookURL": "/book/show/34430839-gwendy-s-button-box",
      "author": "Stephen  KingRichard  ChizmarKeith Minnion",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.92 avg rating — 82,160 ratings"
    },
    {
      "id": 66,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1315100686i/39664._SY75_.jpg",
      "title": "Rita Hayworth and Shawshank Redemption",
      "bookURL": "/book/show/39664.Rita_Hayworth_and_Shawshank_Redemption",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.47 avg rating — 68,755 ratings"
    },
    {
      "id": 67,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263466i/10607._SX50_.jpg",
      "title": "Black House (The Talisman, #2)",
      "bookURL": "/book/show/10607.Black_House",
      "author": "Stephen  KingPeter Straub",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.05 avg rating — 70,812 ratings"
    },
    {
      "id": 68,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1732728644i/221633230._SY75_.jpg",
      "title": "Never Flinch (Holly Gibney, #4)",
      "bookURL": "/book/show/221633230-never-flinch",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.81 avg rating — 73,949 ratings"
    },
    {
      "id": 69,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1468705688i/23512999._SY75_.jpg",
      "title": "The Bazaar of Bad Dreams",
      "bookURL": "/book/show/23512999-the-bazaar-of-bad-dreams",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.91 avg rating — 69,282 ratings"
    },
    {
      "id": 70,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1304686732i/22076._SY75_.jpg",
      "title": "From a Buick 8",
      "bookURL": "/book/show/22076.From_a_Buick_8",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.49 avg rating — 76,034 ratings"
    },
    {
      "id": 71,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565642120i/550844._SY75_.jpg",
      "title": "Cycle of the Werewolf",
      "bookURL": "/book/show/550844.Cycle_of_the_Werewolf",
      "author": "Stephen  KingBernie Wrightson",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.67 avg rating — 66,999 ratings"
    },
    {
      "id": 72,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348108664i/2906039._SY75_.jpg",
      "title": "Just After Sunset",
      "bookURL": "/book/show/2906039-just-after-sunset",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.88 avg rating — 61,461 ratings"
    },
    {
      "id": 73,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422099676i/10574._SY75_.jpg",
      "title": "The Colorado Kid",
      "bookURL": "/book/show/10574.The_Colorado_Kid",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.38 avg rating — 61,797 ratings"
    },
    {
      "id": 74,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1756448301i/102733._SY75_.jpg",
      "title": "One Past Midnight: The Langoliers",
      "bookURL": "/book/show/102733.One_Past_Midnight",
      "author": "Stephen  KingWillem Dafoe",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.93 avg rating — 45,667 ratings"
    },
    {
      "id": 75,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1228499552i/92227._SY75_.jpg",
      "title": "The Two Dead Girls (The Green Mile, #1)",
      "bookURL": "/book/show/92227.The_Two_Dead_Girls",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.50 avg rating — 38,819 ratings"
    },
    {
      "id": 76,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1330222469i/10618._SY75_.jpg",
      "title": "Apt Pupil",
      "bookURL": "/book/show/10618.Apt_Pupil",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.93 avg rating — 43,610 ratings"
    },
    {
      "id": 77,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1527495506i/38926465._SY75_.jpg",
      "title": "The Body",
      "bookURL": "/book/show/38926465-the-body",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.03 avg rating — 41,811 ratings"
    },
    {
      "id": 78,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1332002598i/11580._SX50_.jpg",
      "title": "Creepshow",
      "bookURL": "/book/show/11580.Creepshow",
      "author": "Stephen  KingBernie WrightsonMichele WrightsonJack Kamen",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.07 avg rating — 39,531 ratings"
    },
    {
      "id": 79,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1309287093i/11563._SX50_.jpg",
      "title": "Danse Macabre",
      "bookURL": "/book/show/11563.Danse_Macabre",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.67 avg rating — 31,910 ratings"
    },
    {
      "id": 80,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1346688418i/15825932._SX50_.jpg",
      "title": "In the Tall Grass",
      "bookURL": "/book/show/15825932-in-the-tall-grass",
      "author": "Stephen  KingJoe  HillStephen Lang",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.62 avg rating — 31,879 ratings"
    },
    {
      "id": 81,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407138212i/12070846._SY75_.jpg",
      "title": "Mile 81",
      "bookURL": "/book/show/12070846-mile-81",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.68 avg rating — 30,627 ratings"
    },
    {
      "id": 82,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1685034954i/13451._SX50_.jpg",
      "title": "Storm of the Century",
      "bookURL": "/book/show/13451.Storm_of_the_Century",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.96 avg rating — 26,797 ratings"
    },
    {
      "id": 83,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1515983078i/22844166._SY75_.jpg",
      "title": "1922",
      "bookURL": "/book/show/22844166-1922",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.89 avg rating — 25,171 ratings"
    },
    {
      "id": 84,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1376725117i/5417._SY75_.jpg",
      "title": "Carrie / 'Salem's Lot / The Shining",
      "bookURL": "/book/show/5417.Carrie_Salem_s_Lot_The_Shining",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.58 avg rating — 21,262 ratings"
    },
    {
      "id": 85,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1413163408i/22844188._SX50_.jpg",
      "title": "A Good Marriage",
      "bookURL": "/book/show/22844188-a-good-marriage",
      "author": "Stephen  KingJessica Hecht",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.81 avg rating — 25,500 ratings"
    },
    {
      "id": 86,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1651710894i/59366265._SY75_.jpg",
      "title": "Gwendy's Final Task (The Button Box, #3)",
      "bookURL": "/book/show/59366265-gwendy-s-final-task",
      "author": "Stephen  KingRichard  Chizmar",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.04 avg rating — 23,242 ratings"
    },
    {
      "id": 87,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328794822i/6356190._SY75_.jpg",
      "title": "The Little Sisters of Eluria (Dark Tower, #0.5)",
      "bookURL": "/book/show/6356190-the-little-sisters-of-eluria",
      "author": "Stephen  KingMichael   Whelan",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.17 avg rating — 22,343 ratings"
    },
    {
      "id": 88,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347704033i/7940591._SX50_.jpg",
      "title": "Blockade Billy",
      "bookURL": "/book/show/7940591-blockade-billy",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.49 avg rating — 24,854 ratings"
    },
    {
      "id": 89,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556210860i/228199._SY75_.jpg",
      "title": "The Bad Death of Eduard Delacroix (The Green Mile, #4)",
      "bookURL": "/book/show/228199.The_Bad_Death_of_Eduard_Delacroix",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.54 avg rating — 18,954 ratings"
    },
    {
      "id": 90,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223640398i/228198._SY75_.jpg",
      "title": "Coffey's Hands (The Green Mile, #3)",
      "bookURL": "/book/show/228198.Coffey_s_Hands",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.51 avg rating — 19,055 ratings"
    },
    {
      "id": 91,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1295433746i/6251012._SY75_.jpg",
      "title": "UR",
      "bookURL": "/book/show/6251012-ur",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.76 avg rating — 22,854 ratings"
    },
    {
      "id": 92,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1664847739i/71823._SY75_.jpg",
      "title": "Coffey on the Mile (The Green Mile, #6)",
      "bookURL": "/book/show/71823.Coffey_on_the_Mile",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.59 avg rating — 18,511 ratings"
    },
    {
      "id": 93,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554913636i/228194._SY75_.jpg",
      "title": "The Mouse on the Mile (The Green Mile, #2)",
      "bookURL": "/book/show/228194.The_Mouse_on_the_Mile",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.47 avg rating — 18,691 ratings"
    },
    {
      "id": 94,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223640401i/228200._SY75_.jpg",
      "title": "Night Journey (The Green Mile, #5)",
      "bookURL": "/book/show/228200.Night_Journey",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.53 avg rating — 17,314 ratings"
    },
    {
      "id": 95,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348419476i/11605._SX50_.jpg",
      "title": "Riding the Bullet",
      "bookURL": "/book/show/11605.Riding_the_Bullet",
      "author": "Stephen  KingJosh Hamilton",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.67 avg rating — 20,459 ratings"
    },
    {
      "id": 96,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1750964365i/57213544._SX50_.jpg",
      "title": "The Life of Chuck",
      "bookURL": "/book/show/57213544-the-life-of-chuck",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.99 avg rating — 16,558 ratings"
    },
    {
      "id": 97,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1481416723i/12274389._SX50_.jpg",
      "title": "The Dark Tower Series: Books 1-7",
      "bookURL": "/book/show/12274389-the-dark-tower-series",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 4.62 avg rating — 12,987 ratings"
    },
    {
      "id": 98,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1505815946i/17826887._SY75_.jpg",
      "title": "Children of the Corn",
      "bookURL": "/book/show/17826887-children-of-the-corn",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.91 avg rating — 14,556 ratings"
    },
    {
      "id": 99,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/nophoto/book/111x148._SX50_.png",
      "title": "Laurie",
      "bookURL": "/book/show/40138871-laurie",
      "author": "Stephen  King",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.64 avg rating — 14,050 ratings"
    },
    {
      "id": 100,
      "cover": "https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1360858824i/133268._SY75_.jpg",
      "title": "Two Past Midnight: Secret Window, Secret Garden",
      "bookURL": "/book/show/133268.Two_Past_Midnight",
      "author": "Stephen  KingJames Woods",
      "authorURL": "https://www.goodreads.com/author/show/3389.Stephen_King",
      "rating": " 3.94 avg rating — 12,231 ratings"
    }
  ],
  "nextPage": "/author/list/3389.Stephen_King?page=2&per_page=100",
  "lastScraped": "2026-06-15T00:43:26Z"
}
```

**SDK Code**

```python
import requests

url = "https://biblioreads.eu.org/api/author/books"

payload = {
    "page": 1,
    "queryURL": "https://www.goodreads.com/author/list/3389.Stephen_King"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://biblioreads.eu.org/api/author/books';
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: '{"page":1,"queryURL":"https://www.goodreads.com/author/list/3389.Stephen_King"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://biblioreads.eu.org/api/author/books"

	payload := strings.NewReader("{\n  \"page\": 1,\n  \"queryURL\": \"https://www.goodreads.com/author/list/3389.Stephen_King\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://biblioreads.eu.org/api/author/books")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n  \"page\": 1,\n  \"queryURL\": \"https://www.goodreads.com/author/list/3389.Stephen_King\"\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://biblioreads.eu.org/api/author/books")
  .header("Content-Type", "application/json")
  .body("{\n  \"page\": 1,\n  \"queryURL\": \"https://www.goodreads.com/author/list/3389.Stephen_King\"\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://biblioreads.eu.org/api/author/books', [
  'body' => '{
  "page": 1,
  "queryURL": "https://www.goodreads.com/author/list/3389.Stephen_King"
}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://biblioreads.eu.org/api/author/books");
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"page\": 1,\n  \"queryURL\": \"https://www.goodreads.com/author/list/3389.Stephen_King\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [
  "page": 1,
  "queryURL": "https://www.goodreads.com/author/list/3389.Stephen_King"
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://biblioreads.eu.org/api/author/books")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```