# SEC EDGAR Bankruptcy/Chapter 11 Filing Changes

> SEC EDGAR Bankruptcy/Chapter 11 Filing Changes is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns SEC EDGAR 8-K filings matching bankruptcy or Chapter 11 events since a specified timestamp, including company name, CIK, form type, filing date, significance score, and a direct link to the filing index.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-bankruptcy/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-bankruptcy-chapter-11-filing-changes-955b8e08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Btfx3xPdtGsWfKNXdaib

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 sec-edgar-bankruptcy-chapter-11-filing-changes-955b8e08
```

Example prompt: Show me any SEC EDGAR bankruptcy or Chapter 11 filings detected since 2025-01-01T00:00:00Z, limit to 50 results, and only include filings with a significance score of at least 5.

## When to prefer this

Use this endpoint when you need near-real-time monitoring of new SEC EDGAR bankruptcy and Chapter 11 8-K filings, especially with filtering by recency and significance. Prefer this over scraping SEC EDGAR directly since it normalizes data, scores significance, and provides structured change-feed semantics with a timestamp cursor.

## Known failure modes

- Invalid or missing 'since' parameter format returns a validation error
- 'limit' exceeding 500 or below 1 returns a schema validation error
- 'min_significance' outside 1-10 range is rejected
- No filings found in the requested window returns an empty changes array
- Payment of $0.05 USDC not provided or invalid results in 402 Payment Required
- Service unavailability on Railway returns 503 or timeout

## How this service works

SEC EDGAR 8-K filings matching bankruptcy / Chapter 11 filings since a timestamp — company name, CIK, form, filing date, and a direct link to the filing index.

## Output

Returns a list of change objects, each containing a company name, CIK identifier, SEC form type, filing date, a 1-10 significance score, the detectedAt timestamp, an entityId (e.g. 'edgar:0000320193-26-000064'), and a direct URL to the SEC EDGAR filing index for that 8-K. Also includes a total count and source label.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-bankruptcy-chapter-11-filing-changes-955b8e08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
