# Elem Hcdsb — 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 St. Michael Catholic Elementary School updates by searching for news posts and announcements by keyword, then viewing full details including content, links, media, and publication dates. Get quick access to weekly updates and school news all in one place.

**Category:** Education | **Website:** [elem.hcdsb.org/stmichael/all-news/](https://elem.hcdsb.org/stmichael/all-news/) | **Docs:** [parse.bot/marketplace/47839756-b209-4e0a-a2b7-c53e0a47b6d0/elem-hcdsb-org-api](https://parse.bot/marketplace/47839756-b209-4e0a-a2b7-c53e0a47b6d0/elem-hcdsb-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-elem-hcdsb-org-api-47839756/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_post

Retrieve the full content of a single news post by its numeric ID. Returns complete text content, all embedded links, and media references. Use an id obtained from search_news.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `post_id` | string | Yes | Numeric post ID from search_news results (e.g. 15481). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-elem-hcdsb-org-api-47839756/get_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"post_id":"<string>"}'
```

### search_news

Full-text search over school news posts. Results are ordered by relevance and include title, date, excerpt, embedded links, and media references. Use get_post with a returned id for the complete content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `per_page` | integer | No | Number of posts per page (1-100). |
| `query` | string | No | Search keyword to filter posts by content relevance. |

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