# EDGAR IPO Filing Status Lookup

> EDGAR IPO Filing Status 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 IPO filing by entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/edgar-ipo/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-ipo-filing-status-lookup-2f9ba8af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lrgoKkc_pfyVVrTDzI5E2

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-ipo-filing-status-lookup-2f9ba8af
```

Example prompt: Can you pull up the stored EDGAR IPO filing details for entity ID 'edgar:0000320193-26-000064'?

## When to prefer this

Use this endpoint when you have a specific EDGAR IPO filing entityId and need to retrieve its full stored details. Prefer this over broader search endpoints when you already know the exact filing identifier. This is a point-lookup, not a search — ideal for downstream enrichment after discovering an entityId from a list or monitoring endpoint.

## Known failure modes

- Missing or invalid entityId returns an empty or error response
- Unknown entityId not tracked by the service returns no entity data
- Omitting the id query parameter may return a list of tracked entities instead of a specific filing
- Payment failure (402) if x402 payment header is not provided or insufficient
- Service unavailability on Railway hosting platform

## How this service works

Full stored detail for a single SEC EDGAR IPO registration statements 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 JSON object containing the stored entity record for the specified EDGAR IPO filing, including filing metadata and status details as captured by the oracle service.

## 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-ipo-filing-status-lookup-2f9ba8af/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)
