# Status Blackbaud — 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.

> Monitor and review current and historical service outages and incidents affecting Blackbaud systems. Track incident details and status updates to stay informed about service disruptions impacting your business.

**Category:** Developer Tools | **Website:** [status.blackbaud.com/](https://status.blackbaud.com/) | **Docs:** [parse.bot/marketplace/7ad944e2-0cec-4d54-b14d-6949ad44b8ea/status-blackbaud-com-api](https://parse.bot/marketplace/7ad944e2-0cec-4d54-b14d-6949ad44b8ea/status-blackbaud-com-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-status-blackbaud-com-api-7ad944e2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_incident

Get full details for a specific incident including all status updates with timestamps, update bodies, and per-update affected component transitions. The incident_id is obtained from list_incidents results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `incident_id` | string | Yes | Incident identifier from list_incidents results (e.g. 'tt6bzqpmv91h'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-status-blackbaud-com-api-7ad944e2/get_incident \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"incident_id":"<string>"}'
```

### list_incidents

List incidents from the Blackbaud status page. By default returns only unresolved (active) incidents; set filter to 'all' for the 50 most recent incidents including resolved ones. Each incident includes affected components and update count. Results are returned in a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `filter` | string | No | Which incidents to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-status-blackbaud-com-api-7ad944e2/list_incidents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filter":"<string>"}'
```
