# US Company Financial Snapshot (SEC XBRL)

> US Company Financial Snapshot (SEC XBRL) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Returns a one-call financial snapshot for a US public company including revenue, growth, net income, margin, ROE, and profitability metrics sourced from SEC XBRL data.

## Facts

- Endpoint: GET https://api.x-402.online/v1/us/snapshot
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-company-financial-snapshot-sec-xbrl-f0c6441a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7D7IUm-DAc4UbtTeL1yzw

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 us-company-financial-snapshot-sec-xbrl-f0c6441a
```

Example prompt: Can you pull a financial snapshot for NVDA — I want to see their revenue, net income, profit margin, and return on equity from SEC XBRL data?

## When to prefer this

Use this endpoint when you need a fast, aggregated financial summary for a US public company without parsing raw SEC filings yourself. It is ideal when you want multiple KPIs (revenue, margins, ROE) in a single call rather than fetching them individually. Prefer this over raw SEC EDGAR queries when you need pre-computed ratios and growth metrics. Best for screening, due diligence summaries, or enriching company profiles with financial health indicators.

## Known failure modes

- Unknown or invalid ticker symbol returns a 4xx error with no data
- CIK not found in SEC EDGAR returns empty or error response
- Non-US company tickers not supported — SEC XBRL only covers US registrants
- Missing query parameter (neither ?ticker= nor ?cik= provided) results in a bad request error
- Payment not processed (402 status) if USDC micropayment fails

## How this service works

One-call US company financial snapshot: revenue, growth, net income, margin, ROE, profitability from SEC XBRL. Query: ?ticker= or ?cik=

## Output

A structured financial snapshot object containing key metrics for the queried US public company: annual revenue, revenue growth rate, net income, profit margin, return on equity (ROE), and overall profitability indicators, all sourced from SEC XBRL filings.

## 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": {}
    }
   },
   "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/us-company-financial-snapshot-sec-xbrl-f0c6441a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
