# OmniNexu Company Pulse — Investment Signals

> OmniNexu Company Pulse — Investment Signals 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 an aggregated bullish/bearish investment signal for a US-listed stock, combining insider sentiment, institutional flow, revenue trend, and recent insider transactions from real SEC EDGAR data.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/pulse
- 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-pulse-investment-signals-2d6e88a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xmLox2Xo1-y50s6UKaKSg

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-pulse-investment-signals-2d6e88a4
```

Example prompt: What's the current investment pulse on TSLA — is it bullish or bearish based on insider sentiment, institutional flow, and revenue trends from actual SEC data?

## When to prefer this

Choose this endpoint when you need a quick, aggregated top-level investment signal for a US-listed stock that combines multiple data sources (insider activity, institutional holdings, revenue trend) into a single bullish/bearish verdict. Prefer this over individual data endpoints when you want a holistic sentiment snapshot rather than raw granular filings. Ideal for screening or triage before deeper research.

## Known failure modes

- Missing or invalid ticker returns a 400 or error response
- Ticker longer than 5 characters or non-US-listed stock may return no data or an error
- Payment failure (x402) if USDC payment is not processed correctly
- No data available for very small or newly listed companies
- Rate limiting if too many requests are made in quick succession

## How this service works

Investment signals for any US-listed stock — insider sentiment, institutional flow, revenue trend, and recent insider transactions aggregated into a bullish/bearish rating. Real SEC EDGAR data, not mock.

## Output

A JSON object containing an aggregated bullish/bearish rating for the requested stock ticker, along with component signals: insider sentiment, institutional money flow, revenue trend direction, and a summary of recent insider transactions — all 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, TSLA). 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-pulse-investment-signals-2d6e88a4/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)
