# x402-farm US SEC Filings Lookup

> x402-farm US SEC Filings Lookup is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves SEC filings for US-listed companies, returning filing types and dates, paid per-call via USDC on Base using the x402 protocol.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/us/filings
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-us-sec-filings-lookup-90178c50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GvQxBDz7aNQzNvQSBLR0E

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 x402-farm-us-sec-filings-lookup-90178c50
```

Example prompt: Can you pull up the SEC filings for Apple Inc. — I want to see what forms they've filed and when?

## When to prefer this

Choose this endpoint when an AI agent needs quick, pay-per-call access to SEC filing data for US public companies without setting up an account or API key subscription. Ideal for ad hoc financial research tasks where only a few lookups are needed, leveraging the x402 micropayment protocol with USDC on Base for frictionless per-call billing.

## Known failure modes

- Company not found or ticker not recognized — returns empty filings array or error
- Invalid or missing query parameters — returns 400 bad request
- Payment not received or x402 payment header invalid — returns 402 Payment Required
- Upstream SEC/EDGAR data source unavailable — returns 503 or timeout
- Rate limiting if payment not processed correctly

## How this service works

Pay-per-call APIs for AI agents — x402 protocol, USDC on Base, no account needed.

## Output

A JSON object containing the company name and an array of SEC filings, each with a form type (e.g. '10-K', '10-Q') and the date it was filed with the SEC.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "Apple Inc.",
  "filings": [
   {
    "form": "10-K",
    "filed": "2025-11-01"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-us-sec-filings-lookup-90178c50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-farm.vercel.app](https://www.zero.xyz/host/x402-farm.vercel.app/llms.txt)
