# OmniNexu Company Peer Ranking

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

Returns a company's competitive rank on revenue and net income within its GICS sub-industry peer group for US-listed stocks, using real SEC EDGAR data.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/peer-ranking
- Price: $0.02/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-peer-ranking-1c03d068
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e1b5UOzfYNW98XaXr2yiG

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-peer-ranking-1c03d068
```

Example prompt: Where does Nvidia rank among its GICS sub-industry peers on both revenue and net income — pull the SEC EDGAR peer comparison for ticker NVDA.

## When to prefer this

Use this endpoint when you need to quickly benchmark a single US-listed company's competitive standing within its specific GICS sub-industry by revenue and net income. Prefer this over general fundamentals endpoints when the goal is relative ranking and peer comparison rather than absolute financial metrics. Ideal for equity research, competitive analysis, or screening workflows where industry context matters.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Non-US-listed company tickers are not supported
- Ticker with no GICS classification mapping may return empty peer group
- Newly listed companies may lack sufficient SEC filing history
- API payment failure (x402) if USDC balance is insufficient

## How this service works

Industry peer comparison and competitive ranking for US-listed stocks — see where a company ranks on revenue and net income within its GICS sub-industry. Competitive positioning in one call. Real SEC EDGAR data, not mock.

## Output

Returns the company's rank position on revenue and net income relative to peers in the same GICS sub-industry, along with peer group size and competitive positioning summary, sourced from real SEC EDGAR 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",
      "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."
      }
     }
    }
   },
   "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-peer-ranking-1c03d068/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)
