# OmniNexu Longitudinal Growth CAGR API

> OmniNexu Longitudinal Growth CAGR API is a paid API for AI agents from api.omninexu.com, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Returns multi-year compound annual growth rates (CAGR) for key financial metrics — revenue, net income, EPS, operating income, and cash flow — for any US-listed stock, sourced from SEC EDGAR filings.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/longitudinal
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omninexu-longitudinal-growth-cagr-api-19191094
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q0JXaelzy5JOvDlyP8IX7

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-longitudinal-growth-cagr-api-19191094
```

Example prompt: What are the 3-year and 5-year CAGR trends for revenue, EPS, and cash flow for NVDA — I want to see the long-term growth trajectory, not just the latest quarter.

## When to prefer this

Use this endpoint when you need long-term compound growth trajectory for a US-listed stock across multiple financial metrics (revenue, EPS, net income, operating income, cash flow) rather than point-in-time quarterly figures. Ideal for fundamental analysis, screening for compounders, or building growth-oriented investment research workflows.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Non-US-listed or delisted stocks may return no data
- Ticker with insufficient filing history may lack 5-year CAGR data
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- Temporary SEC EDGAR data unavailability causing stale or missing metrics

## How this service works

Multi-year CAGR growth trends for US-listed stocks — revenue, net income, EPS, operating income, and cash flow compound annual growth rates over 3-5 years. See long-term performance trajectory, not just the latest quarter. Real SEC EDGAR data, not mock.

## Output

Returns structured compound annual growth rate data for a given US-listed stock ticker, covering revenue, net income, EPS, operating income, and cash flow over 3- and 5-year horizons, derived 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-longitudinal-growth-cagr-api-19191094/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)
