# StableFinance SEC Filing Item Types Lookup

> StableFinance SEC Filing Item Types Lookup is a paid API for AI agents from stablefinance.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the list of standard section items for a given SEC filing type (e.g. 10-K, 10-Q, 8-K).

## Facts

- Endpoint: GET https://stablefinance.dev/api/filings/items/types
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablefinance-sec-filing-item-types-lookup-5e24af90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MpHKTxWWt9tG1VKVWTXSL

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-sec-filing-item-types-lookup-5e24af90
```

Example prompt: What are all the standard section items included in a 10-K annual report filing?

## When to prefer this

Use this endpoint when you need to know the canonical section structure of a specific SEC filing type before parsing or analyzing actual filings. It is ideal for agents that need to enumerate expected items in a filing to guide extraction or validation logic, especially for 10-K, 10-Q, 8-K, 20-F, or 6-K filings.

## Known failure modes

- Invalid or unsupported filing_type value returns an error — only 10-K, 10-Q, 8-K, 20-F, and 6-K are accepted
- Payment failure via x402/USDC results in 402 response and no data returned
- Missing required query parameter may return a 400 or empty response
- Network timeout or upstream Financial Datasets AI service unavailability

## How this service works

Enumerable item codes per filing type.

## Output

A JSON object containing the filing_type string and an items array listing all standard section identifiers for that filing type (e.g. ['Item-1', 'Item-1A', 'Item-7', 'Item-7A', 'Item-8'] for a 10-K).

## 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": {
      "filing_type": {
       "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": [
      "filing_type",
      "items"
     ],
     "properties": {
      "items": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "filing_type": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   "Item-1",
   "Item-1A",
   "Item-7",
   "Item-7A",
   "Item-8"
  ],
  "filing_type": "10-K"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablefinance-sec-filing-item-types-lookup-5e24af90/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)
