# Dominion Academy of Dayton — 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.

> View upcoming school calendar events and look up faculty and staff contact information for Dominion Academy of Dayton. Get detailed information about specific events to stay informed about the school's academic and extracurricular activities.

**Category:** Education | **Website:** [www.dominionacademy.org/](https://www.dominionacademy.org/) | **Docs:** [parse.bot/marketplace/e88303e5-7c35-4bb3-b018-651cf6ae329c/dominionacademy-org-api](https://parse.bot/marketplace/e88303e5-7c35-4bb3-b018-651cf6ae329c/dominionacademy-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-dominionacademy-org-api-e88303e5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_details

Retrieve detailed information about a specific school event by its event ID. Returns the event title, category, date, time, and full description including location and cost details. Event IDs can be obtained from the get_events endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric event identifier (e.g. '729'). Obtain from get_events results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dominionacademy-org-api-e88303e5/get_event_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_events

Retrieve upcoming school calendar events. Returns all currently scheduled events from the school's event feed, including summer school sessions, holidays, and school activities. Events are ordered chronologically.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dominionacademy-org-api-e88303e5/get_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_staff

Retrieve the faculty and staff directory. Returns staff members with their names, roles, departments, and photo URLs. Can be filtered by department to show only administrative staff, cathedral school (K-6) teachers, or junior high and high school (7-12) teachers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `department` | string | No | Filter staff by department. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dominionacademy-org-api-e88303e5/get_staff \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"department":"<string>"}'
```
