# Script Master Labs SEC 8-K Filings API

> Script Master Labs SEC 8-K Filings API is a paid API for AI agents from mcp-x402.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves recent SEC Form 8-K filings for a given U.S. public company ticker symbol, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://mcp-x402.onrender.com/x402/sec-8k
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/script-master-labs-sec-8-k-filings-api-a8dc08b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DJqxOCPKiMJdXUhzwbAZr

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 script-master-labs-sec-8-k-filings-api-a8dc08b0
```

Example prompt: Pull the last 5 SEC 8-K filings for Tesla (ticker: TSLA) so I can see what material events they've recently disclosed.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-call access to SEC 8-K (current report) filings for U.S. public companies and want payment settled trustlessly in USDC on Base via the x402 protocol. Prefer this over scraping SEC EDGAR directly or using expensive subscription financial data APIs when you only need occasional lookups.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty results
- Payment not settled in USDC on Base results in 402 Payment Required response
- Limit parameter out of valid integer range may cause a validation error
- SEC EDGAR data temporarily unavailable causes upstream fetch failure
- No 8-K filings on record for obscure or recently listed tickers

## How this service works

Pay-per-call crypto, RWA, federal, SEC, Section 8/HUD housing, and compliance APIs via x402. Primary: USDC on Base (eip155:8453). Also accepts Global Dollar (USDG) on Robinhood Chain (eip155:4663) via sovereign X-PAYMENT-TX. Hyphen routes only (e.g. /x402/gas-tracker, /x402/pha-lookup, /x402/sec-8k). MARKETPLACE REVIEW: use free /x402/playground/* (no key, no payment). Production /x402/* returns 402 unless paid via x402 or X-Api-Market-Key / X-API-Key from seller dashboard.

## Output

A list of recent SEC Form 8-K filings for the specified ticker, including filing dates, event descriptions, and other relevant disclosure metadata sourced from SEC EDGAR, with the number of results bounded by the optional limit parameter.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 5,
       "maximum": 20,
       "minimum": 1
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker (required). e.g. TSLA, AMC, GME."
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/script-master-labs-sec-8-k-filings-api-a8dc08b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp-x402.onrender.com](https://www.zero.xyz/host/mcp-x402.onrender.com/llms.txt)
