# Strale Competitor Compare

> Strale Competitor Compare is a paid API for AI agents from api.strale.io, paid per call via x402, $1.08/call, status unknown (last checked 2026-09-15).

Compares two companies side-by-side by their domains, returning structured competitive intelligence data with an auditable cryptographic record.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/competitor-compare
- Price: $1.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-competitor-compare-17b4cd78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1ENZsIgKwV18yXKRHeNT3

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 strale-competitor-compare-17b4cd78
```

Example prompt: Can you compare stripe.com and braintree.com side by side — I want to understand how they stack up competitively?

## When to prefer this

Choose this endpoint when you need a structured, auditable, side-by-side comparison of two specific companies identified by their web domains — particularly useful for due diligence, procurement evaluation, competitive positioning, or investor research where an audit trail with cryptographic verification is required. Prefer this over generic web search when you need machine-readable structured output rather than scraped prose, and when verifiability of the data provenance matters.

## Known failure modes

- Invalid or unresolvable domain returns an error or empty company data
- One or both domains not found in the data network returns partial or null results
- Network timeout or upstream provider failure returns a 5xx error
- Malformed domain strings (missing TLD, spaces) cause validation errors
- Payment failure via x402 protocol prevents the call from completing

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

A structured JSON response with a side-by-side comparison of both companies derived from their domains, including relevant business attributes, differentiators, and competitive signals, along with a cryptographic audit record with chain hashing for verifiability.

## 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": [
      "domain1",
      "domain2"
     ],
     "properties": {
      "domain1": {
       "type": "string",
       "description": "First company domain"
      },
      "domain2": {
       "type": "string",
       "description": "Second company domain"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-competitor-compare-17b4cd78/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
