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

> Search and retrieve detailed HIPAA breach reports filed with the U.S. Department of Health and Human Services Office for Civil Rights, including information about healthcare data breaches affecting individuals. Browse through breach incidents by organization, date, and breach size to understand compliance violations and affected populations.

**Category:** Government & Public Data | **Website:** [ocrportal.hhs.gov/ocr/breach/breach_report_hip.jsf](https://ocrportal.hhs.gov/ocr/breach/breach_report_hip.jsf) | **Docs:** [parse.bot/marketplace/22e17fbc-4f87-40da-84e6-cb10e478fe13/ocrportal-hhs-gov-api](https://parse.bot/marketplace/22e17fbc-4f87-40da-84e6-cb10e478fe13/ocrportal-hhs-gov-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-ocrportal-hhs-gov-api-22e17fbc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_breaches

Fetch HIPAA breach reports currently under investigation by the Office for Civil Rights. Results are ordered by breach submission date (newest first). Each record represents a reported breach of unsecured protected health information affecting 500 or more individuals, reported within the last 24 months. Returns 100 records per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based). Each page contains up to 100 records. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ocrportal-hhs-gov-api-22e17fbc/list_breaches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
