# SEC EDGAR Material Definitive Agreement Filing Detail

> SEC EDGAR Material Definitive Agreement Filing Detail 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-15).

Returns full stored details for a single SEC EDGAR material definitive agreements (Form 8-K Item 1.01) filing by accession number, including company name, CIK, form type, filing date, and a direct link to the filing index.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-material-contract/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-material-definitive-agreement-filing-detail-a6ed5d81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X9L-CcYjtSrmTSIYRlJc0

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-material-definitive-agreement-filing-detail-a6ed5d81
```

Example prompt: Pull up the SEC EDGAR filing details for the material definitive agreement with accession number edgar:0000320193-26-000064 — I need the company name, CIK, form type, filing date, and a link to the filing index.

## When to prefer this

Use this endpoint when you have a specific EDGAR accession number (entityId) for a material definitive agreement filing and need the full stored metadata — company name, CIK, form type, filing date, and filing index link — in a single structured call. Prefer this over a general EDGAR search when you already know the exact filing ID and need to resolve its details quickly.

## Known failure modes

- Missing or malformed 'id' parameter returns an empty list of tracked entities rather than a specific record
- Invalid or non-existent accession number returns no entity record
- Payment failure (402) if x402 payment header is missing or insufficient
- Network timeout or upstream EDGAR unavailability causes 5xx error
- Accession number formatted incorrectly (not matching edgar:XXXXXXXXXX-XX-XXXXXX pattern) may return no result

## How this service works

Full stored detail for a single SEC EDGAR material definitive agreements 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 structured record for the specified EDGAR filing, including the company name, CIK number, form type (e.g. 8-K), filing date, and a direct URL to the SEC EDGAR filing index page for that accession number.

## 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/sec-edgar-material-definitive-agreement-filing-detail-a6ed5d81/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)
