# SEC EDGAR XBRL Frames — Market-Wide Financial Metric Lookup

> SEC EDGAR XBRL Frames — Market-Wide Financial Metric Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Returns the reported value of one XBRL financial concept for every US public company in a single period, sourced from SEC EDGAR frames data.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sec-frames
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-xbrl-frames-market-wide-financial-metric-lookup-0c31c803
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VB11wTXPLFeZ13yCwHyir

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 sec-edgar-xbrl-frames-market-wide-financial-metric-lookup-0c31c803 -d '<json body>'
```

Example prompt: Pull the SEC EDGAR frames data for the XBRL concept us-gaap/Revenues for the annual period CY2023Q4I, and give me every US public company's CIK, name, and reported revenue figure.

## When to prefer this

Use this endpoint when you need a single XBRL financial metric for the entire universe of US public companies at once — ideal for factor screens, peer comparisons, or building cross-sectional datasets. Prefer it over company-specific SEC endpoints when breadth matters more than depth, and over third-party financial data providers when you want data sourced directly from SEC EDGAR without requiring an API key.

## Known failure modes

- Invalid or unrecognized XBRL concept tag returns an error or empty result set
- Unsupported period format causes a request failure
- No data available if the concept was not widely reported in the chosen period
- Payment failure via x402 blocks the request
- Network timeout for very large frame datasets

## How this service works

One XBRL concept reported by ALL US public companies for a single period from SEC EDGAR frames, no key. Returns each company CIK, entity name, and value. For AI agents screening or comparing a financial metric across the market.

## Output

A list of records — one per reporting company — each containing the company's CIK (SEC identifier), entity name, and the numeric value they reported for the specified XBRL concept in the requested period. No API key is required; payment is handled via x402.

## 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/sec-edgar-xbrl-frames-market-wide-financial-metric-lookup-0c31c803/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)
