# Wiley — 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 Wiley for books by keyword and locale, list available editions and formats for any title, and fetch detailed book metadata such as ISBN and page count from a product page.

**Category:** Education | **Website:** [wiley.com/](https://wiley.com/) | **Docs:** [parse.bot/marketplace/64d82ca0-0346-41e4-9734-8183e82942f9/wiley-com-api](https://parse.bot/marketplace/64d82ca0-0346-41e4-9734-8183e82942f9/wiley-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-wiley-com-api-64d82ca0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article_metadata

Fetch metadata for a Wiley research article from its Wiley Online Library page. Extracts author list, title, journal name, volume, issue number, pages, DOI, publication year, and abstract from citation meta tags and page content. The URL must be a Wiley Online Library article URL (e.g. https://onlinelibrary.wiley.com/doi/...).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full Wiley Online Library article URL (e.g. 'https://onlinelibrary.wiley.com/doi/10.1002/adma.202301264'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wiley-com-api-64d82ca0/get_article_metadata \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_book_metadata

Fetch detailed metadata for a single book from its Wiley product page. Returns ISBN, page count, and description extracted from the HTML. The URL must be a full Wiley product page URL as returned by search_books results' product_url field.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full Wiley product URL (e.g. from search_books results' product_url field). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wiley-com-api-64d82ca0/get_book_metadata \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_books

Full-text search over Wiley.com's book catalog. Returns paginated results including title, author, edition, available formats, pricing, and product URLs. Results include both journals and books depending on the query. Pagination is page-number based.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `locale` | string | No | Locale for search results. Accepted values include 'en-us', 'en-gb'. |
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | Yes | Search keyword (e.g. 'Nursing', 'Calculus', 'Python'). |

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