BankruptcyWatch website screenshot

BankruptcyWatch

BankruptcyWatch is the proven creditor bankruptcy platform built with machine learning and intelligent automation to elevate every bankruptcy interaction. The PACER API provides access to US bankruptcy court data enabling creditors, lenders, and legal teams to search for cases, retrieve dockets, manage claims, file Proof of Claim documents, and automate bankruptcy monitoring across all federal bankruptcy court districts.

1 APIs 8 Features
BankruptcyComplianceCourt DataLegalLendingPACER

APIs

BankruptcyWatch PACER API

The BankruptcyWatch PACER API provides a comprehensive collection of services for interacting with US bankruptcy court data. Search cases across all districts, retrieve dockets ...

Collections

Pricing Plans

Rate Limits

Bankruptcywatch Rate Limits

5 limits

RATE LIMITS

FinOps

Features

Case Search

Search for bankruptcy cases across all US federal bankruptcy court districts.

Docket Retrieval

Retrieve case docket entries and court filings via PACER.

Claims Register

Access the full claims register for any bankruptcy case.

Proof of Claim Filing

Programmatically file Proof of Claim documents with bankruptcy courts.

Bankruptcy Monitoring

Automated alerts when monitored debtors or entities file for bankruptcy.

Machine Learning

ML-powered document parsing and case classification.

No-Code Integrations

Native integrations with Zapier, Salesforce, and Google Sheets.

Webhooks

Real-time webhook notifications for bankruptcy events.

Use Cases

Creditor Bankruptcy Management

Automate detection, research, and response to customer bankruptcy filings.

Loan Portfolio Monitoring

Monitor loan portfolios for borrower bankruptcy filings in real time.

Proof of Claim Automation

Automatically file Proof of Claim documents when debtors file bankruptcy.

Legal Case Management

Manage multiple client creditor representations in bankruptcy proceedings.

Debt Portfolio Acquisition

Research and evaluate bankruptcy debt for acquisition or restructuring.

Compliance Reporting

Automated bankruptcy event detection for regulatory compliance.

Integrations

Zapier
Salesforce
Google Sheets
PACER (US Federal Courts)

Semantic Vocabularies

Bankruptcywatch Context

0 classes · 59 properties

JSON-LD

API Governance Rules

BankruptcyWatch API Rules

15 rules · 9 errors 6 warnings

SPECTRAL

JSON Structure

Case Structure

0 properties

JSON STRUCTURE

Casesearchresponse Structure

0 properties

JSON STRUCTURE

Claim Structure

0 properties

JSON STRUCTURE

Claimsresponse Structure

0 properties

JSON STRUCTURE

Docketentry Structure

0 properties

JSON STRUCTURE

Docketresponse Structure

0 properties

JSON STRUCTURE

Errorresponse Structure

0 properties

JSON STRUCTURE

Monitor Structure

0 properties

JSON STRUCTURE

Monitorlistresponse Structure

0 properties

JSON STRUCTURE

Monitorrequest Structure

0 properties

JSON STRUCTURE

Proofofclaimrequest Structure

0 properties

JSON STRUCTURE

Proofofclaimresponse Structure

0 properties

JSON STRUCTURE

Example Payloads

Case Example

11 fields

EXAMPLE

Casesearchresponse Example

4 fields

EXAMPLE

Claim Example

9 fields

EXAMPLE

Claimsresponse Example

3 fields

EXAMPLE

Docketentry Example

7 fields

EXAMPLE

Docketresponse Example

3 fields

EXAMPLE

Errorresponse Example

3 fields

EXAMPLE

Monitor Example

7 fields

EXAMPLE

Monitorlistresponse Example

2 fields

EXAMPLE

Monitorrequest Example

5 fields

EXAMPLE

Proofofclaimrequest Example

7 fields

EXAMPLE

Proofofclaimresponse Example

5 fields

EXAMPLE

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
📜
TermsOfService
TermsOfService
🔗
SpectralRules
SpectralRules
🔗
Vocabulary
Vocabulary
🔗
JSONLD
JSONLD

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: BankruptcyWatch PACER API
  version: 1.0.0
request:
  auth:
    type: apikey
    key: X-API-Key
    value: '{{X-API-Key}}'
    placement: header
items:
- info:
    name: Cases
    type: folder
  items:
  - info:
      name: Search Bankruptcy Cases
      type: http
    http:
      method: GET
      url: https://api.bankruptcywatch.com/v1/cases/search
      params:
      - name: debtorName
        value: ''
        type: query
        description: Debtor name to search for
      - name: caseNumber
        value: ''
        type: query
        description: PACER case number
      - name: district
        value: ''
        type: query
        description: Bankruptcy court district code
      - name: chapter
        value: ''
        type: query
        description: Bankruptcy chapter (7, 11, 13, etc.)
      - name: dateFiledFrom
        value: ''
        type: query
        description: Filter cases filed on or after this date (ISO 8601)
      - name: dateFiledTo
        value: ''
        type: query
        description: Filter cases filed on or before this date (ISO 8601)
      - name: status
        value: ''
        type: query
        description: Case status filter (open, closed, discharged)
    docs: Search for bankruptcy cases across all US bankruptcy court districts by debtor name, case number, SSN/EIN, or other
      criteria.
  - info:
      name: Get Case Details
      type: http
    http:
      method: GET
      url: https://api.bankruptcywatch.com/v1/cases/:caseId
      params:
      - name: caseId
        value: ''
        type: path
        description: BankruptcyWatch case identifier
    docs: Retrieve detailed information about a specific bankruptcy case including parties, attorneys, and case status.
- info:
    name: Docket
    type: folder
  items:
  - info:
      name: Get Case Docket
      type: http
    http:
      method: GET
      url: https://api.bankruptcywatch.com/v1/cases/:caseId/docket
      params:
      - name: caseId
        value: ''
        type: path
        description: BankruptcyWatch case identifier
      - name: dateFrom
        value: ''
        type: query
        description: Filter docket entries from this date
      - name: dateTo
        value: ''
        type: query
        description: Filter docket entries to this date
    docs: Retrieve the docket entries for a specific bankruptcy case.
- info:
    name: Claims
    type: folder
  items:
  - info:
      name: List Claims
      type: http
    http:
      method: GET
      url: https://api.bankruptcywatch.com/v1/cases/:caseId/claims
      params:
      - name: caseId
        value: ''
        type: path
        description: BankruptcyWatch case identifier
    docs: Retrieve the claims register for a specific bankruptcy case.
  - info:
      name: File Proof of Claim
      type: http
    http:
      method: POST
      url: https://api.bankruptcywatch.com/v1/cases/:caseId/claims
      params:
      - name: caseId
        value: ''
        type: path
        description: BankruptcyWatch case identifier
      body:
        type: json
        data: '{}'
    docs: File a Proof of Claim document with the bankruptcy court for a specific case.
- info:
    name: Monitoring
    type: folder
  items:
  - info:
      name: List Monitors
      type: http
    http:
      method: GET
      url: https://api.bankruptcywatch.com/v1/monitors
    docs: Retrieve all active bankruptcy monitors for the account.
  - info:
      name: Create Monitor
      type: http
    http:
      method: POST
      url: https://api.bankruptcywatch.com/v1/monitors
      body:
        type: json
        data: '{}'
    docs: Create a monitoring alert to track bankruptcy filings for a specific debtor, entity, or set of criteria.
  - info:
      name: Get Monitor
      type: http
    http:
      method: GET
      url: https://api.bankruptcywatch.com/v1/monitors/:monitorId
      params:
      - name: monitorId
        value: ''
        type: path
        description: Monitor identifier
    docs: Retrieve details and status of a specific monitor.
  - info:
      name: Delete Monitor
      type: http
    http:
      method: DELETE
      url: https://api.bankruptcywatch.com/v1/monitors/:monitorId
      params:
      - name: monitorId
        value: ''
        type: path
        description: Monitor identifier
    docs: Remove a bankruptcy monitor.
bundled: true