# EDGAR Daily Filing Index

> EDGAR Daily Filing Index is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a plain-text index of every SEC filing for a given business day, enabling enumeration of all filings by form type (e.g. Form D) within a date range.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/edgar/index
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-daily-filing-index-faebe679
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kxFkopdL4QHFnBAd-gdZk

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-daily-filing-index-faebe679 -d '<json body>'
```

Example prompt: Pull the EDGAR daily filing index for March 15, 2024 and give me all the Form D rows — I want to see every company that filed a fundraising notice that day.

## When to prefer this

Use this endpoint when you need to enumerate ALL filings of a specific form type across a date range — for example, every Form D filed in Q1, or every 8-K in a given week. Unlike full-text search endpoints that require a query term, this index approach requires no search term and guarantees completeness for a given day. One call per business day; filter returned rows by form type prefix. Ideal for systematic regulatory monitoring, fundraising tracking, or building comprehensive filing databases.

## Known failure modes

- Weekend or holiday date returns 404 (no filings exist for non-business days)
- Invalid date format causes request rejection
- Future dates return no data
- Rate limiting if many days are requested in rapid succession
- Network timeout on large index files for high-volume filing days

## How this service works

EDGAR daily index: EVERY filing of EVERY form type for one day (plain-text form.idx). Pass `date` (YYYY-MM-DD, business days; weekends/holidays 404 = no filings). Rows: form type, company, CIK, date, filing path. THE way to enumerate all Form Ds (or any form) in a date window — one call per day; filter rows by form prefix; full-text/kadec0 search cannot do this (they need a query term).

## Output

A plain-text form.idx file listing all SEC filings submitted on the requested business day. Each row contains: form type, company name, CIK, filing date, and the path to the filing on EDGAR Archives. Returns a 404-equivalent if the date is a weekend or holiday (no filings). The complete daily index can be filtered by form type prefix to enumerate any specific filing category.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      }
     },
     "required": [
      "date"
     ],
     "additionalProperties": false,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-daily-filing-index-faebe679/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
