# Crest x402 Competitor Payer Intelligence

> Crest x402 Competitor Payer Intelligence is a paid API for AI agents from data.crestsystems.ai, paid per call via x402, $1.2/call, status down (last checked 2026-09-15).

Returns detailed payer analytics and behavioral intelligence for a competitor's x402 service wallet on Base mainnet, including payer clusters, whale scores, revenue stats, and poaching opportunities.

## Facts

- Endpoint: GET https://data.crestsystems.ai/bazaar/competitors/%7Baddress%7D
- Price: $1.2/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crest-x402-competitor-payer-intelligence-b711f7b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O1_CbTxAxh-eebo3wEp4f

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 crest-x402-competitor-payer-intelligence-b711f7b0
```

Example prompt: Pull the payer intelligence report for the x402 competitor service at address 0x5d6dF6b10C54617dac4Bf9993ad9fA384b7B36d3 — I want to see their whale payers, revenue totals, churn rate, and whether there's a poaching opportunity for us.

## When to prefer this

Use this endpoint when you need on-chain competitive intelligence about who is paying a specific x402 service on Base mainnet — especially to identify high-value whale payers, assess competitor revenue, benchmark churn, or find wallet overlap for poaching opportunities. Prefer this over generic blockchain explorers when you need pre-processed payer clustering and behavioral scoring rather than raw transaction data.

## Known failure modes

- Invalid or malformed wallet address returns a 400 error
- Address not found on Base mainnet x402 ecosystem returns empty or minimal data
- Insufficient USDC balance for the $1.20 per-call fee results in payment failure (402)
- Network congestion on Base mainnet may cause timeout
- Address with very few payers returns low-confidence insights

## How this service works

Crypto market data, DeFi analytics, and x402 ecosystem intelligence via pay-per-request USDC on Base mainnet.

## Output

Returns a JSON object containing: a list of individual payer wallets with cluster labels, whale scores, payment counts, and spend totals; a summary with total revenue, unique payers, avg payment, and premium ratio; and insights including growth trend, 30-day churn rate, whale concentration, and a poaching opportunity score. Also includes the data sources and query timestamp.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Competitor service receiver wallet address (0x + 40 hex chars). Any Base mainnet x402 service address."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "payers": [
   {
    "address": "0x7e571e02c56B...",
    "cluster": "premium_buyer",
    "payments": 23,
    "last_seen": "2026-05-16",
    "first_seen": "2026-04-01",
    "whale_score": 0.85,
    "overlap_with_you": false,
    "total_spent_usdc": 450.2
   }
  ],
  "sources": [
   "base:mainnet:usdc-transfers",
   "crest:profiler:v2"
  ],
  "summary": {
   "avg_payment": 18.89,
   "active_since": "2026-03-15",
   "whale_payers": 12,
   "premium_ratio": 0.62,
   "total_revenue_usdc": 8500,
   "total_unique_payers": 45
  },
  "insights": {
   "growth_trend": "stable",
   "churn_rate_30d": 0.12,
   "whale_concentration": 0.67,
   "poaching_opportunity": 0.45
  },
  "queriedAt": "2026-05-16T20:00:00.000Z",
  "competitor_address": "0x5d6dF6b10C54617dac4Bf9993ad9fA384b7B36d3"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crest-x402-competitor-payer-intelligence-b711f7b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.crestsystems.ai](https://www.zero.xyz/host/data.crestsystems.ai/llms.txt)
