# HHS Office of Inspector General — 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 access HHS Office of Inspector General corporate integrity agreements with details like company names, effective dates, settlement amounts, and agreement status across states. Find specific agreement information including terms and conditions for compliance monitoring cases.

**Category:** Government & Public Data | **Website:** [oig.hhs.gov/compliance/corporate-integrity-agreements/](https://oig.hhs.gov/compliance/corporate-integrity-agreements/) | **Docs:** [parse.bot/marketplace/e87ec9ff-0a3e-4588-9483-8af41525202b/oig-hhs-gov-api](https://parse.bot/marketplace/e87ec9ff-0a3e-4588-9483-8af41525202b/oig-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-oig-hhs-gov-api-e87ec9ff/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_agreements

Browse and list corporate integrity agreements with optional filtering by status and search term. Returns company name, location, state, agreement type, status, and effective date for each agreement. Paginates at 20 items per page. Supports filtering by agreement status and free-text search over company names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of agreements to return when fetching all pages. 0 means no limit. |
| `page` | integer | No | Page number to fetch (20 items per page). 0 or omitted fetches all pages. |
| `search` | string | No | Search term to filter agreements by company name or keywords. |
| `status` | string | No | Filter by agreement status. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-oig-hhs-gov-api-e87ec9ff/browse_agreements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","search":"<string>","status":"<string>"}'
```

### get_agreement_detail

Fetch detailed information about a specific corporate integrity agreement by its URL slug. Returns effective dates, duration, settlement amount, status, report type, category, tags, and press release info. The slug is the trailing path segment from the detail_url returned by browse_agreements.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | No | URL slug of the agreement (e.g. 'neurosurgical-associates-ltd'). Either slug or url is required. |
| `url` | string | No | Full URL of the agreement detail page. Either slug or url is required. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-oig-hhs-gov-api-e87ec9ff/get_agreement_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>","url":"<string>"}'
```
