# Qingheks — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and discover novels on Qinghe Book City by title or keyword, then browse chapter lists and read full chapter content directly. Access a comprehensive library of books with seamless navigation between chapters for uninterrupted reading.

**Category:** Entertainment | **Website:** [www.qingheks.com/](https://www.qingheks.com/) | **Docs:** [parse.bot/marketplace/e690557d-001a-445f-800a-1c9ae63c5d94/qingheks-com-api](https://parse.bot/marketplace/e690557d-001a-445f-800a-1c9ae63c5d94/qingheks-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-qingheks-com-api-e690557d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_book_chapters

Get book metadata and its full chapter list (table of contents). Returns book title, author, status, description, and ordered chapters with chapter_number usable in get_chapter_content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `book_id` | string | Yes | Numeric book ID, obtainable from search_books results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-qingheks-com-api-e690557d/get_book_chapters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"book_id":"<string>"}'
```

### get_chapter_content

Get the full text content of a specific chapter. Returns chapter title and the full text body of the chapter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `book_id` | string | Yes | Numeric book ID, obtainable from search_books results. |
| `chapter_number` | string | Yes | Chapter number, obtainable from get_book_chapters chapters[].chapter_number. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-qingheks-com-api-e690557d/get_chapter_content \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"book_id":"<string>","chapter_number":"<string>"}'
```

### search_books

Search for books by keyword (title, author name, or content-related terms). Returns all matching results in a single response with no pagination. Each result includes book_id which can be used with get_book_chapters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search keyword — can be a book title, author name, or content-related term. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-qingheks-com-api-e690557d/search_books \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>"}'
```
