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

> Discover and search thousands of magazines and newspapers on Readly, browse back issues, and access detailed publication information including categories and metadata. Build apps that help readers find their favorite publications and explore available issues across different genres and topics.

**Category:** News & Media | **Website:** [readly.com/](https://readly.com/) | **Docs:** [parse.bot/marketplace/f197471b-89ed-4fd7-a3ef-1aee5b39fb65/readly-com-api](https://parse.bot/marketplace/f197471b-89ed-4fd7-a3ef-1aee5b39fb65/readly-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-readly-com-api-f197471b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_publication_details

Get detailed metadata for a single publication including its editorial description, release frequency, publisher, and total back-issue count. The publication_id comes from list_publications or search_publications results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `publication_id` | string | Yes | The publication ID (from list_publications or search_publications results). |

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

### get_publication_issues

Fetch back issues for a specific publication. Returns a paginated list of issues ordered by release date (newest first), each with cover image URL, page count, and issue metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `publication_id` | string | Yes | The publication ID (from list_publications or search_publications results). |
| `size` | integer | No | Number of issues per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-readly-com-api-f197471b/get_publication_issues \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","publication_id":"<string>","size":"<integer>"}'
```

### list_categories

List all available magazine categories (topics). Each category has an ID usable with list_publications to filter by topic. Categories may include sub-topics, each also usable as a topic_id filter.

**Estimated cost:** Metered

_No parameters required._

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

### list_publications

List publications from the Readly catalogue. Without a topic_id, returns the latest/hot publications. With a topic_id (from list_categories), returns publications in that category. Results are paginated by page number; each page returns up to `limit` items from the full topic listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of items per page. |
| `page` | integer | No | Page number for pagination. |
| `topic_id` | string | No | Topic/category ID from list_categories (e.g. 'Q38926' for News & Politics). Omitting returns the latest/hot publications. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-readly-com-api-f197471b/list_publications \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","topic_id":"<string>"}'
```

### search_publications

Search for publications by keyword. Returns matching publications with their latest issue information. The full result set is returned in one response (no server-side pagination); use limit to cap how many results come back.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search keyword. |

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