# Neuroterminal SEC Filing History

> Neuroterminal SEC Filing History is a paid API for AI agents from api.neuroterminal.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves a company's SEC filing history by ticker symbol, returning form types, filing dates, and direct SEC document URLs.

## Facts

- Endpoint: GET https://api.neuroterminal.xyz/v1/filing-history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/neuroterminal-sec-filing-history-d56ef55d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hD8Y_5vNimiSSa7L1FXRl

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 neuroterminal-sec-filing-history-d56ef55d
```

Example prompt: Pull up the SEC filing history for Tesla — I want to see their last 5 10-K and 8-K filings with links to the actual documents.

## When to prefer this

Use this endpoint when you need quick, pay-per-call access to SEC filing history without setting up an account or API key. Ideal for agents that need to look up filings for a small number of tickers on demand. Prefer this over direct EDGAR scraping when you want a clean JSON response with direct document URLs already extracted.

## Known failure modes

- Invalid or unrecognized ticker returns empty or error response
- Delisted or non-US companies may have no EDGAR filings
- Payment failure via x402 protocol if USDC balance is insufficient
- Rate limiting or timeout if SEC EDGAR is slow to respond
- Malformed query parameters (e.g. invalid form type) may return no results

## How this service works

Paid HTTP endpoints for AI agents, settled in USDC on Base via the x402 protocol. No account, no API key — pay per call.

## Output

A JSON object containing the queried ticker symbol, a list of filings each with a direct SEC EDGAR URL, form type (e.g. 10-K, 8-K), and filing date, plus the company's SIC industry description.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "forms": {
       "type": "string",
       "description": "comma-separated, e.g. 10-K,8-K"
      },
      "limit": {
       "type": "integer"
      },
      "ticker": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "TSLA",
  "filings": [
   {
    "url": "https://www.sec.gov/Archives/...",
    "form": "10-K",
    "filed": "2026-01-29"
   }
  ],
  "sicDescription": "Motor Vehicles"
 }
}
```

## More

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