# EXVIV Market Intel – Competitor Intelligence for a Specific Market

> EXVIV Market Intel – Competitor Intelligence for a Specific Market is a paid API for AI agents from exviv.com, paid per call via x402, $2/call, status unknown (last checked 2026-09-15).

Returns curated competitor intelligence events (pricing, packaging, product, and positioning changes) for a specified market, filtered for relevance and linked to primary sources.

## Facts

- Endpoint: GET https://exviv.com/api/agent/v1/intel/markets/%7BmarketSlug%7D
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/exviv-market-intel-competitor-intelligence-for-a-specific-market-daa03f4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kt4SOEjWPoum1kWX53UhM

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 exviv-market-intel-competitor-intelligence-for-a-specific-market-daa03f4c
```

Example prompt: Pull me the latest competitor intelligence brief from EXVIV for the 'project-management' market — show me up to 20 events from the past 30 days, especially any pricing or packaging changes.

## When to prefer this

Use this endpoint when you need ready-filtered, source-linked competitive intelligence for a known market vertical — particularly for pricing, packaging, product, or positioning changes — and want noise already removed. Prefer this over raw web scraping or manual research tools when your team needs actionable intel with citations. Best when you have a valid marketSlug from the EXVIV catalog endpoint.

## Known failure modes

- Invalid or unknown marketSlug returns empty events array or 404-equivalent
- days parameter out of range (1–365) causes validation error
- limit parameter out of range (1–100) causes validation error
- Payment not completed (x402 flow incomplete) results in 402 Payment Required
- Market with no recent activity returns empty events array
- Rate limiting or quota exhaustion may return 429

## How this service works

EXVIV tracks competitor pricing, packaging, product, and positioning changes, filters out noise, and attaches the primary source so teams can act with confidence.

## Output

Returns a JSON object with a 'market' object (name and slug) and an 'events' array containing filtered competitor intelligence events — each event describes a change in pricing, packaging, product features, or positioning, with a primary source attached. Versioned under the 'exviv.agent-intel.v1' schema.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "marketSlug"
     ],
     "properties": {
      "marketSlug": {
       "type": "string",
       "maxLength": 100,
       "minLength": 1,
       "description": "Market slug from GET /api/agent/v1/catalog."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "days": {
       "type": "integer",
       "maximum": 365,
       "minimum": 1
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "intel": {
   "events": [],
   "market": {
    "name": "EXVIV market",
    "slug": "{marketSlug}"
   }
  },
  "productId": "market_brief",
  "schemaVersion": "exviv.agent-intel.v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/exviv-market-intel-competitor-intelligence-for-a-specific-market-daa03f4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from exviv.com](https://www.zero.xyz/host/exviv.com/llms.txt)
