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

> Stay informed about Redlands Community Hospital's latest developments by accessing their news and press releases, including service expansions, leadership changes, and patient experience initiatives. Personalize your healthcare outreach efforts with timely operational updates and announcements directly from the hospital.

**Category:** Healthcare | **Website:** [www.redlandshospital.org/](https://www.redlandshospital.org/) | **Docs:** [parse.bot/marketplace/5a8a9e9d-b25f-4449-867c-b07d8e8a4640/redlandshospital-org-api](https://parse.bot/marketplace/5a8a9e9d-b25f-4449-867c-b07d8e8a4640/redlandshospital-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-redlandshospital-org-api-5a8a9e9d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieves the full content of a specific news/blog article by its URL slug. Returns title, category, publication date, and full article text. The slug is obtained from get_news results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug identifying the article, obtained from get_news results (e.g. 'adam-thunell-named-new-chief-executive-officer-o'). |

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

### get_news

Lists news and blog articles from Redlands Community Hospital. Returns all current articles with title, category, excerpt, publication date, and slug. Optionally filtered by category. Results are a single page of all published articles in that category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter articles by category. Omitting returns all articles across all categories. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-redlandshospital-org-api-5a8a9e9d/get_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
