# FilingLane Issuer Pack

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

Fetches quality-gated SEC filing sections (MD&A, risk factors, going concern) as markdown for up to 25 tickers in a single call, with x402 micropayment receipts

## Facts

- Endpoint: GET https://filinglane.dev/v1/issuer-pack
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/filinglane-issuer-pack-4e5c1d92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yk8DfYVAbmfFo9wH9J8UD

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-issuer-pack-4e5c1d92
```

Example prompt: Pull the MD&A and risk factors sections from the latest SEC filings for AAPL, MSFT, and NVDA — give me quality-gated markdown with source URLs.

## When to prefer this

Choose FilingLane Issuer Pack when you need structured, quality-filtered markdown extracts of specific SEC filing sections (MD&A, risk factors, going concern) for multiple tickers in a single API call, rather than downloading and parsing full SEC EDGAR filings yourself. Prefer this over raw EDGAR access when you want guaranteed quality gating (grade C filings rejected), clean markdown output, and micropayment-friendly per-call pricing via x402 on Base USDC.

## Known failure modes

- Invalid or unrecognized ticker symbols return per-ticker error flags
- Grade C quality filing triggers 422 with no charge
- More than 25 tickers in a single request may be rejected
- Payment failure or insufficient USDC balance blocks the request
- Ticker has no recent qualifying SEC filing available on EDGAR
- Network or EDGAR source unavailability causes 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

A JSON object containing per-ticker results with quality-gated markdown for each requested section (mda, risk_factors, going_concern), including a sourceUrl pointing to the EDGAR filing, a cache HIT/MISS indicator, a packHash for the batch, and an x402 payment receipt. Grade C quality triggers a 422 with no charge.

## 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": [
      "tickers"
     ],
     "properties": {
      "include": {
       "type": "string",
       "description": "CSV of mda,risk_factors,going_concern (default all)"
      },
      "tickers": {
       "type": "string",
       "description": "Comma-separated tickers, e.g. AAPL,MSFT (max 25)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "n": 2,
  "ok": true,
  "results": {
   "AAPL": {
    "ok": true,
    "sections": {
     "mda": {},
     "risk_factors": {},
     "going_concern": {}
    }
   }
  },
  "tickers": [
   "AAPL",
   "MSFT"
  ],
  "packHash": "…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/filinglane-issuer-pack-4e5c1d92/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)
