# HS PrepSports — 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 high school sports news, rankings, recruiting updates, and player spotlights from HS PrepSports by searching articles, browsing collections, or reading individual pieces. Stay informed on the latest high school athletic developments with curated content all in one place.

**Category:** Sports | **Website:** [hsprepsports.com/](https://hsprepsports.com/) | **Docs:** [parse.bot/marketplace/8df9c659-669c-4fc4-952f-c89834d7a48d/hsprepsports-com-api](https://parse.bot/marketplace/8df9c659-669c-4fc4-952f-c89834d7a48d/hsprepsports-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-hsprepsports-com-api-8df9c659/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieves full article details including body text, HTML content, metadata, author, section, publication dates, and keywords. Requires an article slug obtainable from list_articles or search_articles results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Article URL slug (e.g. 'elijah-elibert-woodward-academy-cornerback'). Obtainable from list_articles or search_articles results. |

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

### list_articles

Lists articles from the HS PrepSports blog. When sport is provided, returns articles filtered to that sport category. Returns the current article listing without pagination — typically 5–12 articles per category page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sport` | string | No | Sport category slug to filter articles. When omitted, returns all recent blog articles. |

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

### search_articles

Searches articles by a free-text query. Returns matching articles with basic metadata. Results are limited to the site's single search result page (typically up to 5–10 results).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query term (e.g. 'football', 'basketball recruiting'). |

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