# Trusted Information API — US SEC Filings Lookup

> Trusted Information API — US SEC Filings Lookup is a paid API for AI agents from api.trustedinformation.site, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves recent SEC EDGAR filings for a US-listed company by ticker or CIK number, sourced directly from the SEC.

## Facts

- Endpoint: GET https://api.trustedinformation.site/api/company/us-filings
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trusted-information-api-us-sec-filings-lookup-fcceec12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xyBD8lPijOZBlHUrzIqh-

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 trusted-information-api-us-sec-filings-lookup-fcceec12
```

Example prompt: Can you pull up Apple's recent SEC filings from EDGAR? Their ticker is AAPL — I want to see what forms they've filed and when the most recent one was.

## When to prefer this

Use this endpoint when you need structured, official SEC EDGAR filing data for US-listed public companies without requiring API key signup. Ideal for agents that need to check regulatory filings, insider activity, or corporate compliance history on a pay-per-call basis. Prefer over scraping SEC directly or using premium data subscriptions when occasional lookups are needed affordably.

## Known failure modes

- Invalid or unknown ticker symbol returns empty or error response
- CIK not found in EDGAR returns no results
- SEC EDGAR upstream downtime may cause request failure
- Newly listed companies may have limited or no filing history
- Payment failure via x402 results in no charge and no data returned

## How this service works

Pay-per-call UK company, property and crypto market data for AI agents via x402. Official sources, no signup, no API keys, failed calls never charged.

## Output

Returns a JSON object containing the company's CIK number, name, SIC industry classification, associated tickers, exchange listings, fiscal year end date, and an array of recent SEC filings each with form type, filing date, and a direct URL to the filing on SEC EDGAR. Also includes summary flags like last filing date, total recent filing count, and days since last filing.

## 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": {
      "cik": {
       "type": "string",
       "description": "SEC CIK number (alternative to ticker)"
      },
      "ticker": {
       "type": "string",
       "description": "US stock ticker, e.g. AAPL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "cik",
      "recentFilings"
     ],
     "properties": {
      "cik": {
       "type": "number"
      },
      "sic": {
       "type": [
        "string",
        "null"
       ]
      },
      "name": {
       "type": [
        "string",
        "null"
       ]
      },
      "flags": {
       "type": "object"
      },
      "tickers": {
       "type": "array"
      },
      "recentFilings": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": 320193,
  "sic": "Electronic Computers",
  "name": "Apple Inc.",
  "flags": {
   "lastFilingDate": "2026-06-17",
   "recentFilingCount": 1000,
   "daysSinceLastFiling": 38
  },
  "source": "SEC EDGAR",
  "tickers": [
   "AAPL"
  ],
  "exchanges": [
   "Nasdaq"
  ],
  "fiscalYearEnd": "0928",
  "recentFilings": [
   {
    "url": "https://www.sec.gov/Archives/edgar/data/320193/...",
    "form": "4",
    "filedOn": "2026-06-17"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trusted-information-api-us-sec-filings-lookup-fcceec12/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.trustedinformation.site](https://www.zero.xyz/host/api.trustedinformation.site/llms.txt)
