# Valorebooks — 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 for books and instantly compare prices across ValoreBooks' inventory while getting real-time buyback quotes for books you want to sell. Access detailed book information including pricing and resale values to find the best deals on textbooks and used books.

**Category:** Education | **Website:** [valorebooks.com/](https://valorebooks.com/) | **Docs:** [parse.bot/marketplace/d1f3b079-b992-4bd2-915a-805f6ca24c1c/valorebooks-com-api](https://parse.bot/marketplace/d1f3b079-b992-4bd2-915a-805f6ca24c1c/valorebooks-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-valorebooks-com-api-d1f3b079/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_book_details

Get detailed information about a book by ISBN including title, metadata (ISBN-13, ISBN-10, LCCN), structured JSON-LD data, and current marketplace offers with price, condition, and seller. Searches by ISBN and follows the redirect to the product page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `isbn` | string | Yes | ISBN-13 or ISBN-10 of the book. |

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

### get_buyback_quote

Get a buyback quote for a book by ISBN. Returns eligibility status, the offered buyback price, shipping info, and any edition restrictions. Books that do not qualify return eligible=false with an explanatory message.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `isbn` | string | Yes | ISBN of the book to get a buyback quote for. |

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

### search_books

Search for books by title, author, or ISBN. Returns a list of matching books with title, ISBN, and product URL. When the query matches an ISBN exactly the site may redirect to the product page; in that case the response contains full book details instead of a results list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query — a title, author name, or ISBN. |

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