# EDGAR Bankruptcy Filing Status Lookup

> EDGAR Bankruptcy Filing Status Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves stored detail for a single SEC EDGAR bankruptcy filing by its entityId

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-bankruptcy/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-bankruptcy-filing-status-lookup-99560dc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Dw9oJqG4yZc-tom6KYCE

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 edgar-bankruptcy-filing-status-lookup-99560dc0
```

Example prompt: Pull up the stored EDGAR bankruptcy filing details for entity ID 'edgar:0000320193-26-000064' — I want to see all the recorded info for that specific case.

## When to prefer this

Use this endpoint when you already have a specific EDGAR bankruptcy entityId and need to retrieve its full stored detail record. Prefer this over the listing/search endpoint when you want deep details on one known filing rather than scanning for new filings since a timestamp.

## Known failure modes

- Invalid or unknown entityId returns empty or error response
- Missing required 'id' query param returns list of tracked entities instead of a specific record
- Payment not provided results in 402 Payment Required
- Malformed entityId format returns error
- Network or upstream EDGAR data unavailability may result in stale or missing data

## How this service works

Full stored detail for a single SEC EDGAR bankruptcy / Chapter 11 filings filing by accession number (entityId like 'edgar:0000320193-26-000064') — company name, CIK, form type, filing date, and a direct link to the filing index.

## Output

Returns a JSON object containing the stored entity details for the specified EDGAR bankruptcy filing, including company name, CIK, and filing-related metadata. If the id query param is omitted, lists all tracked entities.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-bankruptcy-filing-status-lookup-99560dc0/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)
