# Script Master Labs SEC 10-Q Filings API

> Script Master Labs SEC 10-Q 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-16).

Retrieves SEC 10-Q quarterly filing data for a given U.S. stock ticker, paid per-call in USDC via x402.

## Facts

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

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-10-q-filings-api-a102646a
```

Example prompt: Can you pull the most recent SEC 10-Q quarterly filings for NVDA? I want to see what Nvidia disclosed in their latest quarterly report.

## When to prefer this

Use this endpoint when you need structured SEC 10-Q quarterly filing data for a U.S. publicly traded company by ticker symbol and are operating in an x402-compatible payment environment with USDC on Base. Prefer this over scraping EDGAR directly when you need a clean, pay-per-call API with no API key management.

## Known failure modes

- Unknown or invalid ticker symbol returns no results or an error
- Ticker with no SEC 10-Q filings (e.g. non-U.S. company or private company) returns empty result
- Payment failure via x402 blocks the request with a 402 status
- Rate limiting or server-side error on the Render-hosted service returns 5xx
- Missing required 'ticker' parameter results in a 400 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 SEC 10-Q quarterly filing records for the specified ticker, including filing metadata and report content sourced from EDGAR, up to an optional result limit.

## 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/script-master-labs-sec-10-q-filings-api-a102646a/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)
