# Tokenguard SEC Financial Data Endpoint

> Tokenguard SEC Financial Data Endpoint is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves SEC EDGAR financial concept data (e.g. revenues, assets) for public companies by CIK, returning structured filing series across fiscal years

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/data/sec
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-sec-financial-data-endpoint-b5b1a9ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sMQ1M4m4hgBrn_zVJD8Wg

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 tokenguard-sec-financial-data-endpoint-b5b1a9ee -d '<json body>'
```

Example prompt: Pull Apple's SEC EDGAR revenue data — CIK 320193 — and give me the last 20 10-K filings showing USD revenues by fiscal year.

## When to prefer this

Use this endpoint when you need structured SEC EDGAR financial concept data (revenues, assets, liabilities, etc.) for a specific public company identified by CIK, especially for AI-agent workflows requiring programmatic access to multi-year 10-K or 10-Q filing series. Prefer this over manual EDGAR queries when micropayment-gated, automated access is acceptable and you need machine-readable JSON responses.

## Known failure modes

- Invalid or unknown CIK returns empty or error response
- Requested financial concept not filed by the company returns empty series
- Count parameter too large may return truncated results
- Company has no EDGAR filings for the requested concept
- Network or upstream EDGAR unavailability causes timeout

## How this service works

US SEC filings data: resolve a ticker to its CIK, then pull a reported XBRL financial concept (Revenues, Assets, NetIncomeLoss…) as a time series

## Output

Returns a JSON object with the company name, CIK, financial concept queried, count of results, and a series array where each entry includes the form type (e.g. 10-K), currency unit (e.g. USD), reported value, and fiscal year — e.g. Apple revenues of $383B in FY2023.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "description": "SEC CIK (alternative to ticker)"
  },
  "ticker": {
   "type": "string",
   "description": "Stock ticker, e.g. AAPL"
  },
  "concept": {
   "type": "string",
   "description": "us-gaap XBRL tag (default Revenues)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": 320193,
  "count": 20,
  "series": [
   {
    "form": "10-K",
    "unit": "USD",
    "value": 383285000000,
    "fiscal_year": 2023
   }
  ],
  "company": "Apple Inc.",
  "concept": "Revenues"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-sec-financial-data-endpoint-b5b1a9ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
