# Webnovel — 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.

> Look up comprehensive details about any webnovel including its title, cover image, synopsis, category, chapter count, view count, ranking, ratings, and tags in one request. Perfect for finding book information, comparing rankings, or discovering new titles across different categories.

**Category:** Entertainment | **Website:** [www.webnovel.com/pt/book/o-mais-fraco-domador-de-bestas-consegue-todos-os-drag%C3%B5es-sss_32060926408545505](https://www.webnovel.com/pt/book/o-mais-fraco-domador-de-bestas-consegue-todos-os-drag%C3%B5es-sss_32060926408545505) | **Docs:** [parse.bot/marketplace/dac9d82a-aa41-4a98-a341-a194fc1dcc7a/webnovel-com-api](https://parse.bot/marketplace/dac9d82a-aa41-4a98-a341-a194fc1dcc7a/webnovel-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-webnovel-com-api-dac9d82a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_book_details

Fetches detailed metadata for a webnovel book given its ID or URL slug. Returns the page URL, title, cover image URL, category, chapter count, view count, power ranking position (may be null when unavailable), rating score and count, full synopsis, and tags. Accepts both the numeric book ID (e.g. '32060926408545505') and the full URL slug with title (e.g. 'o-mais-fraco-domador-de-bestas-consegue-todos-os-dragoes-sss_32060926408545505').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `book_id` | string | Yes | Webnovel book identifier. Can be the numeric ID (e.g. '32060926408545505') or the full slug including title (e.g. 'o-mais-fraco-domador-de-bestas-consegue-todos-os-dragoes-sss_32060926408545505'). |

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

### search_books

Searches webnovel books by title keyword. Returns 10 results per page with pagination support. Each result includes the book URL, title, cover image, categories, rating, synopsis, and tags. Uses the page parameter to navigate through results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (10 results per page). |
| `query` | string | Yes | Search keyword to find books by title. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-webnovel-com-api-dac9d82a/search_books \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
