# StableFinance SEC Filings Index

> StableFinance SEC Filings Index is a paid API for AI agents from stablefinance.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves an index of SEC filings for a company, filterable by ticker or CIK, filing type (10-K, 10-Q, 8-K, 20-F, 6-K), and result count.

## Facts

- Endpoint: GET https://stablefinance.dev/api/filings
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablefinance-dev-750d0648
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4jzMVRQ6gUaWJpLU8V533

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 stablefinance-dev-750d0648
```

Example prompt: Show me the last 10 SEC filings for Apple (ticker AAPL), including 10-K and 10-Q filing types.

## When to prefer this

Use this endpoint when you need an index or list of SEC filings for a specific company, identified by ticker or CIK, with optional filtering by filing type. Prefer this over earnings-specific endpoints when you need a broader filing history across all SEC form types.

## Known failure modes

- Missing ticker and CIK returns an error — at least one identifier is required
- Invalid ticker symbol returns no results or an error
- Filing type enum value not in allowed list (10-K, 10-Q, 8-K, 20-F, 6-K) causes validation failure
- Limit exceeds 100 returns a schema validation error
- Payment not included or insufficient USDC balance results in 402 Payment Required

## How this service works

SEC filings index for a company.

## Output

Returns a JSON object containing a 'filings' array with SEC filing records for the specified company, including details such as filing type, date, and document references, up to the requested limit.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "ticker": "AAPL",
   "filing_type": [
    "10-K",
    "10-Q"
   ]
  }
 }
}
```

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "cik": {
       "type": "string",
       "minLength": 1
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "ticker": {
       "type": "string",
       "minLength": 1
      },
      "filing_type": {
       "anyOf": [
        {
         "enum": [
          "10-K",
          "10-Q",
          "8-K",
          "20-F",
          "6-K"
         ],
         "type": "string"
        },
        {
         "type": "array",
         "items": {
          "enum": [
           "10-K",
           "10-Q",
           "8-K",
           "20-F",
           "6-K"
          ],
          "type": "string"
         }
        }
       ]
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "filings"
     ],
     "properties": {
      "filings": {
       "type": "array",
       "items": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "filings": [
   {
    "cik": "0000320193",
    "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm",
    "ticker": "AAPL",
    "filing_date": "2024-11-01",
    "filing_type": "10-K",
    "report_date": "2024-09-28",
    "accession_number": "0000320193-24-000123"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablefinance-dev-750d0648/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablefinance.dev](https://www.zero.xyz/host/stablefinance.dev/llms.txt)
