# EDGAR Cyber Filing Detail Lookup

> EDGAR Cyber Filing Detail 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 filing by entityId (e.g. 'edgar:0000320193-26-000064').

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-cyber/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-cyber-filing-detail-lookup-550a46b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yTc7TpP-FOpCCWY-ToHrK

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-cyber-filing-detail-lookup-550a46b3
```

Example prompt: Pull up the stored EDGAR filing details for entity ID 'edgar:0000320193-26-000064' — I need the full record for that specific filing.

## When to prefer this

Use this endpoint when you already have a specific EDGAR entityId and need the full stored detail record for that single filing. Prefer this over listing endpoints when you know the exact filing identifier. Useful for enriching bankruptcy or 8-K filing references retrieved from sibling endpoints on the same service.

## Known failure modes

- Unknown or invalid entityId returns empty or error response
- Malformed entityId format (not 'edgar:XXXXXXXXXX-XX-XXXXXX') may return 400 or empty
- Filing not yet ingested into the oracle's store returns no result
- Missing required query param may return list instead of single record
- Service unavailable returns 5xx

## How this service works

Full stored detail for a single SEC EDGAR cybersecurity-incident disclosures 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 stored entity object containing detailed metadata for the specified SEC EDGAR filing, including filing-specific fields. If no id is provided, returns a list of 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-cyber-filing-detail-lookup-550a46b3/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)
