# FilingLane Going Concern Check

> FilingLane Going Concern Check 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).

Extracts and quality-gates going concern language from SEC 10-K/10-Q MD&A filings for a given stock ticker, returning structured markdown with source citation

## Facts

- Endpoint: GET https://filinglane.dev/v1/going-concern
- 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-going-concern-check-cf46a319
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XOLg8BS5oshiD_hllps_-

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-going-concern-check-cf46a319
```

Example prompt: Check whether SPCE has any going concern or substantial doubt language in its latest SEC 10-K filing and give me the relevant excerpt.

## When to prefer this

Use this endpoint when you need a fast, targeted extraction of going concern language from a specific company's SEC filing without downloading or parsing the full filing yourself. Ideal for AI agents doing due diligence, portfolio risk screening, or short-seller research where a structured boolean flag plus cited excerpt is more useful than a raw document. Prefer this over full-filing dump services when you only need MD&A-level going concern signals and want quality-gated, citation-backed results at low per-call cost.

## Known failure modes

- 422 Unprocessable Entity when filing quality grade is C or below — no charge applied
- Ticker not found or not publicly traded on SEC EDGAR
- No going concern language detected (going_concern: false) — valid response, not an error
- Invalid or mismatched accession number provided
- Rate limiting or payment failure via x402 USDC micropayment

## 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: a boolean 'going_concern' flag, a boolean 'substantial_doubt' flag, an 'excerpt_md' with the relevant markdown text from the filing, a 'cite' object with the SEC form type, accession number, and direct SEC URL, the ticker symbol, and a 'source' field indicating whether the data came from MD&A, 8-K, or both. Only returned if the filing passes quality gate (grade below C returns 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": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker, e.g. SPCE"
      },
      "accession": {
       "type": "string",
       "description": "Optional SEC accession number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cite": {
   "form": "10-K",
   "sec_url": "https://www.sec.gov/…",
   "accession": "0001706946-26-000019"
  },
  "source": "both",
  "ticker": "SPCE",
  "excerpt_md": "…",
  "going_concern": true,
  "substantial_doubt": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/filinglane-going-concern-check-cf46a319/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)
