# fittings SEC Company Facts

> fittings SEC Company Facts is a paid API for AI agents from fittings.sh, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves structured XBRL financial facts for a US public company by CIK and US-GAAP concept, returning all reported values across filing periods.

## Facts

- Endpoint: GET https://fittings.sh/v1/sec/company-facts
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-sec-company-facts-56958577
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O_PZu3C5r1RpOQgiXRsRA

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 fittings-sec-company-facts-56958577
```

Example prompt: Pull Apple's revenue figures from SEC EDGAR — their CIK is 0000320193 and I want the Revenues concept — so I can see every reported value across all filing periods.

## When to prefer this

Choose this endpoint when you need structured, machine-readable XBRL financial data directly from SEC EDGAR filings for any US public company — particularly when you want historical multi-period data for a specific accounting concept like revenue, assets, or debt. Prefer this over general financial data APIs when you need the authoritative as-reported figures tied to specific SEC filings rather than normalized or estimated data.

## Known failure modes

- Invalid or unknown CIK returns empty or error response
- US-GAAP concept name misspelled or not tagged by company returns no facts
- Company has no XBRL filings (e.g. non-filer or very old company) returns empty dataset
- Rate limiting or payment failure returns 402 or 429 error
- Concept exists but company never reported it returns empty facts array

## How this service works

Structured XBRL financial facts for a company by CIK: revenue, assets, cash and every other tagged concept as reported.

## Output

Returns structured XBRL financial fact data including all reported values for the requested US-GAAP concept across filing periods, with units, form types, filing dates, start/end dates, and entity metadata — mirroring the SEC EDGAR company-facts API format.

## 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",
     "required": [
      "cik",
      "concept"
     ],
     "properties": {
      "cik": {
       "type": "string",
       "description": "Company CIK, padded or bare"
      },
      "concept": {
       "type": "string",
       "description": "US-GAAP concept, e.g. Revenues or Assets"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-sec-company-facts-56958577/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
