# Orthogonal Competitor Analysis

> Orthogonal Competitor Analysis is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Analyzes a company's landing page and web search evidence to identify and return its direct competitors in the same product or market.

## Facts

- Endpoint: GET https://x402.orthogonal.com/context-dev/web/competitors
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-competitor-analysis-145736d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m7om-VhErltBV9qmEg-rB

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 orthogonal-competitor-analysis-145736d7
```

Example prompt: Can you find me the top 7 direct competitors of notion.so by analyzing their landing page and web evidence?

## When to prefer this

Choose this endpoint when you need automated, evidence-based competitor discovery for a specific company domain without manual research. It is best suited for quickly populating competitive intelligence in reports, pitch decks, or sales tooling. Prefer this over general web search when you want structured, deduplicated competitor output grounded in both landing page analysis and web evidence for a given domain.

## Known failure modes

- Domain not found or unreachable — no landing page content to analyze
- Ambiguous or very niche domain may yield low-confidence or no competitors
- numCompetitors parameter ignored if outside expected range
- Rate limiting or payment failure via x402 protocol
- Web search evidence unavailable for obscure markets

## How this service works

Analyze a company's landing page and web search evidence to return direct competitors for the same product or market.

## Output

A list of direct competitor companies (up to the requested number, defaulting to 5) derived from the target company's landing page content and web search signals, including competitor names and likely associated domains or descriptions in the same product or market category.

## 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": {
      "domain": {
       "type": "string",
       "description": "Company domain to analyze, such as stripe.com."
      },
      "numCompetitors": {
       "type": "string",
       "description": "Exact number of direct competitors to return. Defaults to 5."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-competitor-analysis-145736d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
