# Pdfbooksworld — 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 free public domain books with detailed information like titles, authors, and descriptions, or browse curated lists of the most popular books available. Get instant access to book metadata and find exactly what you're looking for across thousands of free PDF titles.

**Category:** Education | **Website:** [www.pdfbooksworld.com/](https://www.pdfbooksworld.com/) | **Docs:** [parse.bot/marketplace/8adaf269-0147-435b-929f-bf0025824c3c/pdfbooksworld-com-api](https://parse.bot/marketplace/8adaf269-0147-435b-929f-bf0025824c3c/pdfbooksworld-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-pdfbooksworld-com-api-8adaf269/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_book_details

Fetch full details of a single book by its URL slug. Returns title, author, full synopsis, cover image URL, and a list of related books. The slug is the URL path segment found in search_books results (e.g. 'Shakespearean-Tragedy-by-AC-Bradley'). Returns input_not_found when the slug does not match any book.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Book URL slug from search_books results (e.g. 'Shakespearean-Tragedy-by-AC-Bradley', 'Romeo-and-Juliet-by-William-Shakespeare'). |

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

### list_popular_books

List the most popular PDF books on the site. Returns a curated collection of highly-downloaded public domain books. No parameters required; the list is site-curated and not paginated.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pdfbooksworld-com-api-8adaf269/list_popular_books \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_books

Full-text search over the PDF Books World library. Returns paginated book summaries matching the query keywords. Results include title, author, description snippet, and cover image. Pagination via integer page number; an empty books array signals no matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID to filter results. Use '0' for all categories. Known IDs include '383' (Fiction), '467' (Novels), '384' (Non Fiction), '382' (Academic & Text). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keywords (e.g. 'shakespeare', 'adventure', 'science fiction'). |

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