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

> Retrieve articles published by The Saratoga Falcon student newspaper staff members to stay updated on school news and stories. Filter and search through the collection of staff-written pieces to find coverage on topics that matter to your school community.

**Category:** News & Media | **Website:** [saratogafalcon.org/staff_name/ethan-ko/](https://saratogafalcon.org/staff_name/ethan-ko/) | **Docs:** [parse.bot/marketplace/c7b69a2d-cdf2-41bd-a232-b22c59278453/saratogafalcon-org-api](https://parse.bot/marketplace/c7b69a2d-cdf2-41bd-a232-b22c59278453/saratogafalcon-org-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-saratogafalcon-org-api-c7b69a2d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_articles_by_staff

Get all articles written by a staff member, identified by their URL slug. Returns paginated results with article titles, dates, links, and excerpts. Pagination via integer page number; each article includes id, title, slug, publication date, link, excerpt HTML, and category IDs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of articles per page, between 1 and 100. |
| `staff_name` | string | Yes | URL slug of the staff member (e.g. 'ethan-ko', 'ryan-kim'). This is the hyphenated lowercase name as it appears in the staff URL path. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-saratogafalcon-org-api-c7b69a2d/get_articles_by_staff \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","staff_name":"<string>"}'
```
