# SEC EDGAR Executive & Director Departure Filings

> SEC EDGAR Executive & Director Departure Filings 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 executive and director departures since a given timestamp, with 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-exec-change/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-executive-director-departure-filings-2c499970
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GUtM9zp7lw12s6oy_c9Sl

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-executive-director-departure-filings-2c499970
```

Example prompt: Pull all SEC EDGAR 8-K executive and director departure filings detected since 2025-01-01T00:00:00Z, limit to 50 results, and only show me changes with a significance score of at least 7.

## When to prefer this

Use this endpoint when you need to programmatically monitor or retrieve SEC-mandated disclosures of executive and director departures from public companies, especially when you want to filter by recency and significance. Prefer this over general EDGAR search when you specifically need leadership-change 8-K filings in structured, machine-readable form with significance scoring already applied.

## Known failure modes

- Invalid or missing 'since' parameter returns an error or empty result set
- 'limit' outside 1–500 range returns a validation error
- 'min_significance' outside 1–10 range returns a validation error
- No filings found in the requested time window returns count:0 and empty changes array
- Payment failure (x402) prevents access to the endpoint
- EDGAR source temporarily unavailable results in stale or missing data

## How this service works

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

## Output

A JSON object containing a count of matched changes and an array of change records, each with the company name, CIK, form type, summary, type of change, significance score (1–10), detected timestamp, effective date, and a direct URL to the SEC EDGAR filing index for verification.

## 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-executive-director-departure-filings-2c499970/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)
