# OmniNexu Company Financial Fundamentals with Peer Comparison

> OmniNexu Company Financial Fundamentals with Peer Comparison is a paid API for AI agents from api.omninexu.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns SEC EDGAR-sourced financial fundamentals (revenue, net income, EPS, assets, liabilities, cash flow) for a US-listed stock, with industry peer ranking and data-quality confidence scoring.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/context
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omninexu-company-financial-fundamentals-with-peer-comparison-33dff3bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wpfeXIXQO6Eu1vwknv56I

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 omninexu-company-financial-fundamentals-with-peer-comparison-33dff3bd
```

Example prompt: Pull up Apple's (AAPL) financial fundamentals — revenue, net income, EPS, assets, liabilities, and cash flow from SEC filings — and show me how it ranks against its industry peers, including the data confidence score.

## When to prefer this

Choose this endpoint when you need a comprehensive snapshot of a company's financial fundamentals (income statement, balance sheet, cash flow) combined with peer benchmarking and a data-confidence score — especially when you want SEC-verified, real data rather than estimated or third-party aggregated figures. Prefer this over pure peer-comparison or filings-only endpoints when you need both fundamentals and competitive context in a single call.

## Known failure modes

- Invalid or unrecognized ticker symbol returns a 404 or error response
- Non-US-listed ticker returns no data or an error
- SEC EDGAR data unavailable for very recent filings may result in stale or missing metrics
- Rate limiting or payment failure (x402) blocks the request
- Ticker exceeding 5 characters fails schema validation

## How this service works

Company financial fundamentals with peer comparison and cross-source confidence scoring for US-listed stocks. Revenue, net income, EPS, assets, liabilities, cash flow from SEC EDGAR 10-K/10-Q filings. Includes industry peer ranking and data-quality confidence score. Real SEC EDGAR data, not mock.

## Output

A JSON object containing key financial metrics (revenue, net income, EPS, total assets, total liabilities, operating cash flow) sourced from SEC EDGAR 10-K/10-Q filings, an industry peer ranking within the company's GICS sector, and a cross-source data-quality confidence score indicating reliability of the returned data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "maxLength": 5,
       "minLength": 1,
       "description": "US stock ticker (AAPL, MSFT, GOOGL). Any US-listed company."
      },
      "include_peers": {
       "type": "boolean",
       "description": "Include peer ranking in GICS industry. Default: true."
      }
     }
    }
   },
   "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/omninexu-company-financial-fundamentals-with-peer-comparison-33dff3bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.omninexu.com](https://www.zero.xyz/host/api.omninexu.com/llms.txt)
