# Intelica Batch Competitive Intelligence

> Intelica Batch Competitive Intelligence is a paid API for AI agents from api.intelica.dev, paid per call via x402, $0.2/call, status down (last checked 2026-09-15).

Analyzes competitive landscapes and returns a moat index, competitor list, decision recommendation, and execution plan for strategic market entry or positioning decisions.

## Facts

- Endpoint: POST https://api.intelica.dev/batch
- Price: $0.2/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/intelica-batch-competitive-intelligence-0a0c6d15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wFoQB207TMRT94wD7Dz8C

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-batch-competitive-intelligence-0a0c6d15 -d '<json body>'
```

Example prompt: Run a competitive intelligence analysis on the Southeast Asia payments market — I'm seeing Stripe, Adyen, and 2C2P as competitors, and I want to know if we should enter or avoid with a confidence score and a week-one execution plan.

## When to prefer this

Use this endpoint when you need a structured, scored competitive assessment with a concrete strategic recommendation and execution roadmap — especially when you already have some competitor signals and want a normalized moat index and budget-aware action plan. Prefer this over generic web search or manual research when you need machine-readable strategic outputs (action enum, confidence score, risk level) that can feed downstream decision automation.

## Known failure modes

- Missing or malformed decision_recommendation object causes validation failure
- confidence_score or intelica_moat_index outside 0–1 range triggers schema rejection
- Invalid action enum value (not one of enter/avoid/monitor/acquire/partner) returns 400
- Payment not processed or x402 authorization failure results in 402 response
- Empty or null detected_competitors array may produce low-confidence output with minimal actionable guidance

## How this service works

Competitive intelligence API — pay-per-call via x402

## Output

Returns a structured JSON object containing the Intelica Moat Index (0–1 float indicating competitive barrier strength), a list of detected competitors, a decision recommendation with action (enter/avoid/monitor/acquire/partner), risk level (low/medium/high), confidence score, and rationale, plus an execution plan with weekly actions and phase-based budget guidance in USD.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "execution_plan": {
   "type": "object"
  },
  "intelica_moat_index": {
   "type": "number",
   "maximum": 1,
   "minimum": 0
  },
  "detected_competitors": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "decision_recommendation": {
   "type": "object",
   "required": [
    "action",
    "confidence_score",
    "rationale"
   ],
   "properties": {
    "action": {
     "enum": [
      "enter",
      "avoid",
      "monitor",
      "acquire",
      "partner"
     ],
     "type": "string"
    },
    "rationale": {
     "type": "string"
    },
    "risk_level": {
     "enum": [
      "high",
      "medium",
      "low"
     ],
     "type": "string"
    },
    "confidence_score": {
     "type": "number",
     "maximum": 1,
     "minimum": 0
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "execution_plan": {
    "type": "object"
   },
   "intelica_moat_index": {
    "type": "number"
   },
   "detected_competitors": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "decision_recommendation": {
    "type": "object"
   }
  }
 },
 "example": {
  "execution_plan": {
   "week_1_actions": [
    "Map local payment method coverage gaps"
   ],
   "budget_guidance": {
    "phase_1_usd": "$50K-$80K"
   }
  },
  "intelica_moat_index": 0.82,
  "detected_competitors": [
   "Stripe",
   "Adyen",
   "2C2P"
  ],
  "decision_recommendation": {
   "action": "avoid",
   "rationale": "IMI 0.82 exceeds avoid threshold",
   "risk_level": "high",
   "confidence_score": 0.88
  }
 }
}
```

## More

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