# AutoScrape Bankruptcy Filings API

> AutoScrape Bankruptcy Filings API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search and retrieve US federal bankruptcy court docket filings by party name, chapter, court, and date range via CourtListener.

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/bankruptcy-filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-bankruptcy-filings-api-bf390e42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BEA5HOPsIX9Hq7-Rr8dzJ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability autoscrape-bankruptcy-filings-api-bf390e42
```

Example prompt: Can you search bankruptcy filings for 'Acme Retail LLC' — specifically Chapter 11 cases filed between January 1 2024 and June 30 2024 in the New York Southern Bankruptcy Court (nysb)?

## When to prefer this

Use this endpoint when you need to programmatically search US federal bankruptcy court dockets by debtor name, chapter type, court jurisdiction, or date range without needing an API key for evaluation. Ideal for due diligence workflows, creditor research, legal intelligence, and financial risk screening. Prefer this over manual CourtListener searches when integrating into automated agent workflows requiring structured JSON output.

## Known failure modes

- No results found for the given party name or query — returns empty results array with count 0
- Invalid court ID provided — may return an error or empty results
- Date range has no matching filings — returns empty results
- maxResults capped at 10 per request even if more exist
- Invalid chapter value may trigger a warning or fallback to Chapter 11 default
- Network or upstream CourtListener API timeout

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of matching records and an array of results, each containing the bankruptcy chapter number, court ID, case name, and a direct CourtListener docket URL. Also includes a setupStatus field indicating whether records were found.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "chapter": "11",
    "courtId": "nysb",
    "caseName": "Example Company LLC",
    "docketUrl": "https://www.courtlistener.com/docket/example/"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-bankruptcy-filings-api-bf390e42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
