# EDGAR Executive Change Filing Detail Lookup

> EDGAR Executive Change 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 executive change filing by its entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-exec-change/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-executive-change-filing-detail-lookup-54c3d81f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BesRvKqI_V4pLvpVfb51F

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-executive-change-filing-detail-lookup-54c3d81f
```

Example prompt: Pull up the full details for the EDGAR executive change filing with ID 'edgar:0000320193-26-000064' — I want to see all the stored entity data for that specific filing.

## When to prefer this

Use this endpoint when you have a specific EDGAR executive change entityId and need to retrieve its full stored detail record. Prefer this over search/list endpoints when you already know the exact filing ID. Ideal for agents that have previously discovered a filing ID via a list or monitoring endpoint and now need the complete entity data.

## Known failure modes

- Invalid or unrecognized entityId returns empty or error response
- Filing not yet tracked or ingested returns no result
- Missing required 'id' query param returns list of entities instead of a specific record
- Payment not included or insufficient results in HTTP 402 error
- Malformed entityId format (not matching 'edgar:XXXXXXXXXX-XX-XXXXXX' pattern) may return no match

## How this service works

Full stored detail for a single SEC EDGAR executive / director departures 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 the full detail record for the specified EDGAR executive change filing, including company information, filing metadata, and executive change specifics. If no ID is provided, 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-executive-change-filing-detail-lookup-54c3d81f/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)
