# JeetScreener SEC Filings Search

> JeetScreener SEC Filings Search is a paid API for AI agents from jeetscreener.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Search and retrieve SEC filings for a given stock ticker, with VERN AI sentiment analysis, from a database of 312,000+ filings

## Facts

- Endpoint: GET https://jeetscreener.io/api/sec-filings
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jeetscreener-io-3d0fd6f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G2LtMYASTnBbUBrqhcbqI

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 jeetscreener-io-3d0fd6f9
```

Example prompt: Pull up the SEC filings for TSLA — I want to see all available filings with their sentiment scores from the VERN AI analysis.

## When to prefer this

Use this endpoint when you need to search SEC regulatory filings for a specific stock ticker and want AI-powered sentiment analysis (VERN AI) alongside the filing metadata. Prefer this over raw EDGAR access when sentiment scoring is needed, or when you want a pre-indexed database of 312,000+ filings with structured metadata including filing type and ticker association.

## Known failure modes

- Missing required 'ticker' parameter returns error
- Invalid or unknown ticker symbol returns empty results
- Response truncated for tickers with very large filing histories (indicated by _truncated: true)
- Network timeout for large datasets
- Payment failure via x402 protocol blocks access

## How this service works

SEC filing search - 312,000+ filings with VERN AI sentiment analysis, filing type, ticker

## Output

A (potentially truncated) collection of SEC filings for the specified ticker, including filing type, sentiment analysis scores from VERN AI, and metadata. The response indicates if it was truncated and the original payload size.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jeetscreener-io-3d0fd6f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jeetscreener.io](https://www.zero.xyz/host/jeetscreener.io/llms.txt)
