# ScriptMasterLabs SEC 10-Q Filing Lookup API

> ScriptMasterLabs SEC 10-Q 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 10-Q quarterly report filings for a given stock ticker, paid per call via x402 micropayment protocol.

## Facts

- Endpoint: GET https://mcp-x402-discovery.onrender.com/x402/sec-10q
- 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-10-q-filing-lookup-api-132f7f1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__1K4tbMAvjqSEhfyNZvlj

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-10-q-filing-lookup-api-132f7f1c
```

Example prompt: Pull the 3 most recent SEC 10-Q quarterly filings for AAPL so I can review their latest financial disclosures.

## When to prefer this

Choose this endpoint when you need quick, pay-per-call access to SEC 10-Q quarterly filings for a specific publicly traded company without committing to a subscription. Ideal for AI agents that need on-demand financial compliance data using x402 micropayments in USDC on Base, especially for infrequent or single-ticker lookups where a full SEC EDGAR subscription would be overkill.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or error
- Payment not provided results in HTTP 402 response requiring x402 or API key
- Limit parameter out of range (below 1 or above 10) causes validation error
- SEC EDGAR data unavailable or delayed causes timeout or empty response
- Ticker missing from request returns schema validation 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 10-Q quarterly report filings for the specified stock ticker, including filing metadata such as dates, accession numbers, and document links, up to the requested limit (1–10, default 5).

## 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": 10,
       "minimum": 1
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker (required)."
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-sec-10-q-filing-lookup-api-132f7f1c/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)
