# FCC ECFS Filings Lookup

> FCC ECFS Filings Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves FCC Electronic Comment Filing System (ECFS) filings for a given proceeding/docket number, with optional filer name filtering.

## Facts

- Endpoint: GET https://2s.io/api/telecom/fcc-filings
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fcc-ecfs-filings-lookup-6d7e6ce0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NFOS5-BhH8TaWLPdgyGag

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 fcc-ecfs-filings-lookup-6d7e6ce0
```

Example prompt: Pull up all FCC filings for proceeding 17-108 — I want to see what the Wireline Competition Bureau has submitted, up to 10 results.

## When to prefer this

Use this endpoint when you need ground-truth, live-wrapped public records from the FCC's official Electronic Comment Filing System for a known proceeding/docket number. Prefer this over scraping fcc.gov directly or using stale datasets when you need current filings with structured metadata. Best for regulatory research, compliance monitoring, or legal discovery involving FCC proceedings.

## Known failure modes

- Missing required 'proceeding' parameter returns an error
- Invalid or non-existent docket number returns empty items array with total 0
- Limit exceeds maximum of 50 returns validation error
- FCC ECFS upstream unavailable causes fetch failure
- Filer name filter typo returns empty results silently

## How this service works

Search FCC Electronic Comment Filing System (ECFS) filings for a proceeding/docket (e.g. 17-108 net neutrality, 11-42 Lifeline). Optionally filter by filer name. Returns the newest filings with the submission id, filer, type, lead bureau, received/disseminated dates, and document count. Public-domain federal data. Track FCC regulatory dockets, comments, and ex-parte filings an LLM can't recite fresh.

## Output

A JSON object containing an array of filing records (each with ID, type, filer name, bureau, proceeding, date received, document count, and date disseminated), a total count of matching filings, and source attribution metadata pointing back to the FCC ECFS database.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "proceeding"
     ],
     "properties": {
      "filer": {
       "type": "string",
       "description": "Optional filer name filter."
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "proceeding": {
       "type": "string",
       "description": "FCC proceeding/docket number, e.g. 17-108."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fcc-ecfs-filings-lookup-6d7e6ce0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
