# EDGAR M&A Filing Detail Lookup

> EDGAR M&A 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).

Returns stored detail for a single SEC EDGAR merger & acquisition filing by entityId

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-ma/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-m-a-filing-detail-lookup-23d1811d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t--B3VNpaLsQkjw8JaPCT

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-m-a-filing-detail-lookup-23d1811d
```

Example prompt: Pull up the full details for SEC EDGAR M&A filing edgar:0000320193-26-000064 — I need to see everything stored about that specific filing.

## When to prefer this

Use this endpoint when you need structured detail for a specific, known SEC EDGAR M&A filing and already have the entityId. Prefer this over search endpoints when you want to retrieve a previously indexed or tracked filing record directly by ID rather than searching by company name or date range.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- Unknown entityId not tracked by the oracle returns no entity data
- Malformed entityId format (not matching edgar:XXXXXXXXXX-XX-XXXXXX pattern) may fail
- Payment required error if x402 payment header is missing or invalid
- Service unavailability on Railway infrastructure

## How this service works

Full stored detail for a single SEC EDGAR merger / acquisition 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 an entity object containing stored details for the specified M&A filing, including company and filing metadata associated with the given EDGAR entityId. If no id is provided, returns a list of 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-m-a-filing-detail-lookup-23d1811d/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)
