# ScriptMasterLabs SEC 8-K Filing Lookup API

> ScriptMasterLabs SEC 8-K Filing Lookup API is a paid API for AI agents from mcp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves recent SEC 8-K current report filings for a given stock ticker via a pay-per-call x402 micropayment API

## Facts

- Endpoint: GET https://mcp-x402-discovery.onrender.com/x402/sec-8k
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-sec-8-k-filing-lookup-api-58432ca0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jDW7tSPRE3A-LHFLtK4WQ

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 scriptmasterlabs-sec-8-k-filing-lookup-api-58432ca0
```

Example prompt: Pull the 5 most recent SEC 8-K filings for TSLA so I can see what material events Tesla has disclosed.

## When to prefer this

Use this endpoint when you need quick, pay-per-call access to SEC 8-K current event filings for a specific publicly traded company without needing a full SEC EDGAR subscription. Ideal for on-demand compliance checks, pre-trade research, or event-driven monitoring where you only occasionally need 8-K data and want to pay per query via crypto micropayment.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Limit parameter out of range (below 1 or above 20) returns a validation error
- Missing required ticker query parameter returns a 400 bad request
- Payment not provided results in a 402 Payment Required response
- SEC EDGAR upstream unavailability may cause timeout or 503 error

## 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

Returns a list of recent SEC 8-K current report filings for the specified stock ticker, including filing metadata such as dates, report titles, and disclosure content, up to the requested limit (max 20).

## 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/scriptmasterlabs-sec-8-k-filing-lookup-api-58432ca0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp-x402-discovery.onrender.com](https://www.zero.xyz/host/mcp-x402-discovery.onrender.com/llms.txt)
