# Company Stock Quote & SEC Filings Research

> Company Stock Quote & SEC Filings Research is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches a live stock quote and recent SEC filings for a US public company ticker symbol, with disclosure signals.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/company_stock_quote_sec_filings_research
- 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/company-stock-quote-sec-filings-research-27314347
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZXh8TXKUsiY1Y5gO-hGwt

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 company-stock-quote-sec-filings-research-27314347
```

Example prompt: Can you pull the current stock quote and most recent SEC filings for NVDA, including any disclosure signals?

## When to prefer this

Choose this endpoint when you need both live stock quote data and SEC filing history in a single call for a US-listed public company. It is ideal for investment research, vendor due diligence, or compliance workflows where combining market price context with regulatory disclosures adds value. Prefer this over separate stock and EDGAR endpoints when you want disclosure signals pre-computed alongside the raw filing list.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty results
- SEC EDGAR rate limiting may delay or fail filing retrieval
- Private or non-US-listed companies will return no results
- Limit parameter out of bounds may be clamped or rejected
- Network timeouts to upstream data sources may result in partial or failed responses

## How this service works

Audit one public site or compare up to five domains across llms.txt, OpenAPI, robots, sitemap, x402 metadata, and the discovery surfaces autonomous buyers rely on.

## Output

Returns a JSON object with the ticker symbol, a live stock quote object, an array of recent SEC filing metadata entries, a success boolean, and a disclosure_signals object summarizing notable regulatory disclosure patterns.

## 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": [
      "symbol"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Recent filing rows to return; bounded by the live tool."
      },
      "symbol": {
       "type": "string",
       "description": "US public-company ticker symbol."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "symbol",
      "quote",
      "filings",
      "disclosure_signals"
     ],
     "properties": {
      "quote": {
       "type": "object",
       "properties": {},
       "additionalProperties": true
      },
      "symbol": {
       "type": "string"
      },
      "filings": {
       "type": "array",
       "items": {}
      },
      "success": {
       "type": "boolean"
      },
      "disclosure_signals": {
       "type": "object",
       "properties": {},
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "quote": {},
  "symbol": "NVDA",
  "filings": [],
  "success": true,
  "disclosure_signals": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-stock-quote-sec-filings-research-27314347/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
