Skip to main content

BankruptcyOps API

Complete API reference for developers

โ† Back to App
๐Ÿ”

API Overview

BankruptcyOps provides a complete REST API for integrating bankruptcy case management, AI analysis, and document generation into your practice management system or legal platform. All endpoints are HTTPS, require Bearer token authentication (except webhooks), and return JSON.

Step 1: Authentication Setup

All authenticated endpoints require a Bearer token. Tokens are obtained via the login endpoint and valid for 7 days.

curl -X POST https://bankruptcyops.com/api/auth/login \
  -H "Content-Type: application/json" \
  -d '{
    "email": "attorney@lawfirm.com",
    "password": "secure_password"
  }'

The response includes a Bearer token valid for 7 days. Store securely โ€” never expose in client-side code or version control.

Step 2: Make Your First API Call

List all cases for authenticated firm with Bearer token:

curl -X GET https://bankruptcyops.com/api/cases \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." \
  -H "Content-Type: application/json"

Step 3: Integrate into Your Application

// Authenticate
const loginRes = await fetch('https://bankruptcyops.com/api/auth/login', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    email: 'attorney@lawfirm.com',
    password: 'password'
  })
});

const { token } = await loginRes.json();

// Get cases
const casesRes = await fetch('https://bankruptcyops.com/api/cases', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer ' + token,
    'Content-Type': 'application/json'
  }
});

const { cases } = await casesRes.json();
console.log('Cases:', cases);

Key Features

  • +

    AI-Powered Analysis

    Means test, schedule prep, 341 hearing, Ch.13 plan generation

  • +

    Multi-Tenant Support

    Firm and team member management with role-based access

  • +

    Real-Time Webhooks

    Event notifications for subscriptions, case updates, analysis completion

  • +

    GDPR Compliance

    Data export and account deletion endpoints for regulatory compliance

Integration Partners

  • Coming: Clio integration
  • Coming: Practice Panther integration
  • Coming: PACER API gateway

Planned Features

  • TypeScript SDK
  • Python SDK
  • GraphQL endpoint
  • Bulk operations API

Integration Partnership

BankruptcyOps is built for integration with practice management platforms and legal software. If you are an ISV or platform interested in white-labeling BankruptcyOps capabilities, contact our partnership team.

inquire about partnerships

BankruptcyOps ยฉ 2026. All rights reserved. | Built for bankruptcy attorneys.