# AgentToll EDGAR SEC Filings Lookup

> AgentToll EDGAR SEC Filings Lookup is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches SEC EDGAR filings for a given company or ticker symbol, returning structured filing data via a pay-per-call x402 micropayment API.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/finance/edgar
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-edgar-sec-filings-lookup-df92c17f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ul18yduuTxn8kspIxHSUx

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 agenttoll-edgar-sec-filings-lookup-df92c17f -d '<json body>'
```

Example prompt: Pull the most recent SEC EDGAR filings for Tesla — I want to see any 10-K or 8-K forms they've filed.

## When to prefer this

Choose this endpoint when an AI agent needs structured, programmatic access to SEC EDGAR filings without building a custom scraper or managing EDGAR API authentication. Ideal for financial research workflows, due diligence automation, and compliance monitoring where per-call micropayment cost ($0.03 USDC) is acceptable and the agent needs real-time or recent filing data from the official SEC database.

## Known failure modes

- Company or ticker not found in EDGAR — empty filings array returned
- Invalid CIK or ticker symbol — malformed request error
- Payment not processed — x402 payment required error before data is returned
- Rate limiting or upstream EDGAR availability issues causing delayed or failed responses
- Date range too broad or unsupported parameters returning partial results

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object with a success flag and a data.filings array containing metadata about each SEC filing found for the queried company, including filing type, date, accession numbers, and related document references.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "maxLength": 200
      },
      "ticker": {
       "type": "string",
       "maxLength": 10
      },
      "form_type": {
       "enum": [
        "10-K",
        "10-Q",
        "8-K",
        "S-1"
       ],
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "filings": []
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-edgar-sec-filings-lookup-df92c17f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
