# Interzoid Competitor Analysis API

> Interzoid Competitor Analysis API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns AI-generated competitor analysis and a list of key competitors for a given company name

## Facts

- Endpoint: GET https://api.interzoid.com/getcompetitoranalysis
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-competitor-analysis-api-671efb8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kRIvyQvrVf1CfKmlKaPgE

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 interzoid-competitor-analysis-api-671efb8b
```

Example prompt: Who are Stripe's main competitors and what does the competitive landscape look like for them?

## When to prefer this

Use this endpoint when you need a quick, AI-generated competitive intelligence summary for a named company — especially useful for market research, sales enablement, or business analysis tasks where you want both a structured list of competitors and a brief narrative analysis in a single call.

## Known failure modes

- Unknown or very obscure company name returns empty or low-quality analysis
- Missing 'lookup' query parameter returns an error
- Invalid or malformed request returns a non-Success code
- Rate limiting or payment failure (x402) if credits are exhausted

## How this service works

Identify and analyze a company's primary competitors with detailed comparison information including market positioning, products, and competitive advantages.

## Output

A JSON object containing: the company name, a comma-separated list of key competitors, and a narrative AI-generated analysis of the competitive landscape including strengths and positioning of rivals. Also includes a status code and credits field.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Apple Inc"
  }
 }
}
```

## 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",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Company name to analyze competitors for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "Analysis": "Stripe leads in developer experience and API breadth, with Adyen competing strongly in enterprise...",
  "CompanyName": "Stripe",
  "Competitors": "Adyen, Square, PayPal Braintree, Checkout.com"
 }
}
```

## More

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