# RepMax Media — 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.

> Access breaking high school and prep sports news, recruiting updates, and college pipeline stories from RepMax Media by browsing articles or retrieving specific stories. Stay informed on athlete profiles, recruitment trends, and feature coverage across multiple sports programs.

**Category:** Sports | **Website:** [repmaxmedia.com/](https://repmaxmedia.com/) | **Docs:** [parse.bot/marketplace/a83ff11e-8f8b-450c-8ffd-d07fb5c2a115/repmaxmedia-com-api](https://parse.bot/marketplace/a83ff11e-8f8b-450c-8ffd-d07fb5c2a115/repmaxmedia-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-repmaxmedia-com-api-a83ff11e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Get the full content of a single article by its slug. Returns structured metadata (title, author, category, dates, word count) extracted from JSON-LD and the full article body text. The slug is the URL path segment after /articles/ as returned by list_articles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Article slug from the URL path (e.g. 'where-are-they-now-sirr-bible'). Obtainable from list_articles results. |

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

### list_articles

List articles from RepMax Media with optional search query, category filter, and pagination. Returns up to 9 articles per page along with pagination metadata. When no filters are applied, returns all articles in reverse chronological order.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category name to filter articles. Values observed include Recruiting, College Life, Breaking, Features, Football, Basketball, Player of the Week, Portal, and many more. The site forwards unrecognized values to the server. |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `query` | string | No | Free-text search query to filter articles by title, content, or topic (e.g. 'football', 'recruiting'). |

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