# Suverse SEC Company Concept History

> Suverse SEC Company Concept History is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns the full reported history of a single XBRL financial concept (e.g. Revenues, Assets, NetIncomeLoss) for a US public company, sourced from SEC EDGAR, including every period, value, unit, form, and filing.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sec-company-concept
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-sec-company-concept-history-bde1dd5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4RE_ACk4tY46v5Z_U_ilq

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 suverse-sec-company-concept-history-bde1dd5b -d '<json body>'
```

Example prompt: Pull the full SEC EDGAR history of reported Revenues for Apple — CIK 0000320193 — including every period, value, filing form, and unit across all submissions.

## When to prefer this

Use this endpoint when you need the complete multi-period reported history of a specific XBRL financial concept for a US public company directly from SEC EDGAR, without needing to scrape or parse filings yourself. Prefer this over general financial data APIs when EDGAR provenance, exact form-level attribution, and structured per-filing granularity matter — e.g. for building financial models, backtesting, or regulatory research.

## Known failure modes

- Invalid or unknown CIK returns an error or empty result
- XBRL concept name not recognized or misspelled returns no data
- Company has no XBRL-tagged filings (e.g. very old or non-US filer) yields empty history
- Rate limiting or payment failure returns 402 or 429
- Network timeout for companies with very large filing histories

## How this service works

Full reported history of one XBRL financial concept (Revenues, Assets, NetIncomeLoss) for a US public company by SEC CIK from SEC EDGAR: every period, value, unit, form, filing. For AI agents extracting structured fundamentals and building models.

## Output

A structured list of all historical data points for the requested XBRL financial concept for the given company, including each reported value, the unit of measure, the reporting period (start/end dates), the SEC form type (e.g. 10-K, 10-Q), and the accession number or filing reference — covering the entire available history in EDGAR.

## 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": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-sec-company-concept-history-bde1dd5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
