Redlandshospital APIredlandshospital.org ↗
Access news articles, press releases, and announcements from Redlands Community Hospital. Filter by category, retrieve full article text, publication dates, and more.
What is the Redlandshospital API?
The Redlands Community Hospital API provides structured access to the hospital's published news and announcements through 2 endpoints, returning fields including title, category, excerpt, slug, and full article body text. The get_news endpoint lists all published articles across categories like Press Room and Foundation News, while get_article retrieves the complete content of a specific article by its URL slug.
curl -X GET 'https://api.parse.bot/scraper/619b8d61-c89d-4174-bc4c-fc835e9707ee/get_news?category=foundation_focus_newsletter' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace redlandshospital-org-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: RedlandsHospital SDK — bounded, re-runnable; every call capped."""
from parse_apis.redlandshospital_org_api import RedlandsHospital, Category, ArticleNotFound
client = RedlandsHospital()
# List recent press room articles — capped at 3 total items.
for article in client.article_summaries.list(category=Category.PRESS_ROOM, limit=3):
print(article.title, article.published_date, article.category)
# Drill into the first article for full content via summary navigation.
summary = client.article_summaries.list(limit=1).first()
try:
full = summary.details()
print(full.title, full.posted_date)
print(full.content[:200])
except ArticleNotFound as e:
print("article gone:", e.slug)
print("exercised: article_summaries.list, article_summaries.details")
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.
| Param | Type | Description |
|---|---|---|
| category | string | Filter articles by category. Omitting returns all articles across all categories. |
{
"type": "object",
"fields": {
"total": "integer count of articles returned",
"articles": "array of article summaries with title, url, slug, category, excerpt, and published_date"
},
"sample": {
"data": {
"total": 12,
"articles": [
{
"url": "https://www.redlandshospital.org/news-blog/2026/january/adam-thunell-named-new-chief-executive-officer-o/",
"slug": "adam-thunell-named-new-chief-executive-officer-o",
"title": "Adam Thunell Named New Chief ...",
"excerpt": "Redlands Community Hospital (RCH) has announced the appointment of veteran health care executive Adam Thunell to the position of Chief Executive ...",
"category": "Press Room",
"published_date": "Jan 15, 2026"
}
]
},
"status": "success"
}
}About the Redlandshospital API
Endpoints and Data Coverage
The API exposes two endpoints covering Redlands Community Hospital's public news content. get_news returns an array of article summaries including title, url, slug, category, excerpt, and published_date, along with a total count of matched articles. An optional category parameter lets you filter results to a specific category such as "Press Room" or "Foundation News". Omitting the parameter returns all published articles across every category.
Full Article Retrieval
get_article takes a slug — obtained from a prior get_news response — and returns the complete article, including title, content (full body text), category, posted_date, slug, and canonical url. This makes it straightforward to build a pipeline: fetch the article index first, then retrieve full text for the items relevant to your use case.
Content Scope
Articles sourced through this API cover hospital announcements such as service line expansions, new leadership appointments, patient experience initiatives, community programs, and foundation fundraising updates. The content reflects what Redlands Community Hospital publishes in its public newsroom. Pagination is not required — get_news returns all published articles in a given category in a single response.
The Redlandshospital API is a managed, monitored endpoint for redlandshospital.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when redlandshospital.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official redlandshospital.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Monitor leadership changes at Redlands Community Hospital by filtering
get_newsfor executive appointment announcements and extracting names fromcontent. - Track service expansion announcements to identify new specialties or facilities added to the hospital's offerings.
- Aggregate Foundation News articles to follow philanthropic campaigns and donation drives relevant to healthcare outreach.
- Pull
published_dateandtitlefromget_newsto build a chronological feed of hospital updates for a healthcare intelligence dashboard. - Use
excerptfields from article summaries to pre-screen articles before fetching full text withget_article, reducing unnecessary calls. - Collect press room articles to support competitive analysis of operational changes at a regional California hospital.
- Ingest full article
contentfor NLP classification of topics such as patient safety, community partnerships, or clinical program launches.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Redlands Community Hospital have an official developer API?+
How does the `category` filter in `get_news` work, and what categories are available?+
category parameter to get_news to limit results to articles in that category. Known categories include "Press Room" and "Foundation News". Omitting the parameter returns articles from all categories in a single response.Does the API return paginated results or all articles at once?+
get_news returns all published articles matching the (optional) category filter in a single response — there are no pagination parameters. The total field in the response indicates how many articles were returned.Does the API cover hospital service pages, physician directories, or patient portal content?+
title, content, category, and published_date. Service pages, physician profiles, and patient portal data are not included. You can fork the API on Parse and revise it to add endpoints targeting those sections of the site.How fresh is the article data, and are older archived articles included?+
get_news returns all currently visible published articles.