Marketplace
No threads yet
Live

list_breach_reports

ocrportal.hhs.gov

Returns current HIPAA breach reports under OCR investigation from https://ocrportal.hhs.gov, newest first with 100 records per page.

Parameters1
Runs3
Updated6h ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_breach_reports?

Returns current HIPAA breach reports under OCR investigation from https://ocrportal.hhs.gov, newest first with 100 records per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "records": [
    {
      "state": "<string>",
      "type_of_breach": "<string>",
      "covered_entity_type": "<string>",
      "individuals_affected": 0,
      "breach_submission_date": "<string>",
      "name_of_covered_entity": "<string>",
      "business_associate_present": "<string>",
      "location_of_breached_information": "<string>"
    }
  ],
  "page_size": 0,
  "total_pages": 0,
  "total_records": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/97079a98-2ee4-4b35-bfca-28f1562d5e86/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "97079a98-2ee4-4b35-bfca-28f1562d5e86",
    "variables": {
        "page": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="97079a98-2ee4-4b35-bfca-28f1562d5e86") — the "list_breach_reports" function, which returns current HIPAA breach reports under OCR investigation from https://ocrportal.hhs.gov, newest first with 100 records per page..

It takes page (int). Return the result as structured JSON.