# Intelica Competitive Intelligence API

> Intelica Competitive Intelligence API is a paid API for AI agents from intelica.onrender.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-16).

Analyzes a URL or text to generate competitive intelligence insights in a specified mode and format

## Facts

- Endpoint: POST https://intelica.onrender.com/intel
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/intelica-competitive-intelligence-api-cafd8535
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x8Qoqn7Ari5XGDSIk9r8u

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 intelica-competitive-intelligence-api-cafd8535 -d '<json body>'
```

Example prompt: Can you run a competitive intelligence analysis on https://www.acmecorp.com in competitive mode and give me the results as JSON? I want to understand their positioning and offerings.

## When to prefer this

Use this endpoint when you need automated competitive intelligence extraction from a specific URL or text snippet, particularly for business research workflows where structured JSON output and selectable analysis modes (e.g. competitive) are required. Prefer this over general web scrapers when the goal is actionable competitive insight rather than raw content.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- Unsupported mode value may produce unexpected output
- Missing both url and text fields may result in a validation error
- Payment failure (x402) blocks the request before processing
- force_refresh=false may return cached/stale results for recently analyzed URLs

## Output

Returns a structured JSON (or formatted) competitive intelligence report derived from the provided URL or text, including insights relevant to market positioning, competitive signals, and strategic context depending on the selected mode.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "IntelRequest",
 "properties": {
  "url": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "title": "Url"
  },
  "mode": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "title": "Mode",
   "default": "competitive"
  },
  "text": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "title": "Text"
  },
  "format": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "title": "Format",
   "default": "json"
  },
  "context": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "title": "Context"
  },
  "operator_id": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "title": "Operator Id"
  },
  "force_refresh": {
   "anyOf": [
    {
     "type": "boolean"
    },
    {
     "type": "null"
    }
   ],
   "title": "Force Refresh",
   "default": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/intelica-competitive-intelligence-api-cafd8535/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intelica.onrender.com](https://www.zero.xyz/host/intelica.onrender.com/llms.txt)
