# FilingLane SEC Filing Section API

> FilingLane SEC Filing Section API is a paid API for AI agents from filinglane.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Fetches quality-gated markdown excerpts of specific SEC filing sections (MD&A, 8-K items, risk factors) for a given stock ticker from EDGAR

## Facts

- Endpoint: GET https://filinglane.dev/v1/filing
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/filinglane-sec-filing-section-api-adfe0623
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_usRBeur38XeCFNxWp8_Lr

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 filinglane-sec-filing-section-api-adfe0623
```

Example prompt: Pull the MD&A section from Apple's latest SEC 10-K filing and give it to me as markdown so I can analyze management's discussion of revenue trends.

## When to prefer this

Choose FilingLane when you need a specific named section of an SEC filing (MD&A, 8-K items, risk factors) in clean, structured markdown with a quality gate — rather than raw full-filing dumps or PDF scraping. Ideal for agents doing targeted financial analysis, earnings research, or regulatory monitoring where only one section is needed and cost efficiency matters. The quality-grading system means you only pay for usable content.

## Known failure modes

- Grade C quality result returns HTTP 422 with no charge — filing text too low quality to serve
- Invalid or unknown ticker symbol returns an error
- Unsupported section enum value returns a validation error
- Filing not yet available on EDGAR for the ticker returns a not-found error
- Network or EDGAR upstream unavailability may cause retrieval failure

## How this service works

**RESHAPE wedge:** SEC **MD&A (`mda`)** + common **8-K items** → quality-gated markdown with `sourceUrl`, cache HIT/MISS ($0.05/$0.01), and x402 receipts. `risk_factors`/`business` available as secondary (Massive already sells those ~$0.01). Not a full-filing dump. Base USDC (`eip155:8453`) Exact; grade C → 422 no charge. Not financial advice. FilingLane is not affiliated with the U.S. Securities and Exchange Commission (SEC). Data sourced from publicly available EDGAR filings.

## Output

Returns a JSON object containing the extracted filing section as formatted markdown, the original SEC EDGAR source URL, a quality grade (A/B/C — with grade C returning a 422 error and no charge), a cache hit/miss indicator, the ticker symbol, and the section name. Pricing is $0.05 USDC on cache miss, $0.01 on cache hit, settled via x402 on Base (eip155:8453).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker",
      "section"
     ],
     "properties": {
      "format": {
       "enum": [
        "json",
        "markdown",
        "md"
       ],
       "type": "string",
       "description": "json (default) or markdown"
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker, e.g. AAPL"
      },
      "section": {
       "enum": [
        "8k_item_1.01",
        "8k_item_2.01",
        "8k_item_2.02",
        "8k_item_5.02",
        "8k_item_7.01",
        "8k_item_8.01",
        "business",
        "legal_proceedings",
        "mda",
        "mda_10q",
        "risk_factors",
        "risk_factors_10q"
       ],
       "type": "string",
       "description": "Named section only — not full filing"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ticker",
      "section",
      "sourceUrl",
      "markdown"
     ],
     "properties": {
      "cached": {
       "type": "boolean"
      },
      "ticker": {
       "type": "string"
      },
      "section": {
       "type": "string"
      },
      "markdown": {
       "type": "string"
      },
      "sourceUrl": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cached": false,
  "ticker": "AAPL",
  "quality": {
   "grade": "A"
  },
  "section": "mda",
  "markdown": "# Item 7 — MD&A\n\n...",
  "sourceUrl": "https://www.sec.gov/Archives/edgar/data/..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/filinglane-sec-filing-section-api-adfe0623/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from filinglane.dev](https://www.zero.xyz/host/filinglane.dev/llms.txt)
