# MCX Ventures Domain Intelligence Brief

> MCX Ventures Domain Intelligence Brief is a paid API for AI agents from api.mcx-ventures.com, paid per call via x402, $5/call, status unknown (last checked 2026-09-14).

Generates a structured intelligence brief with a sourcing map for any question or topic, optionally grounded in user-supplied source texts or URLs

## Facts

- Endpoint: POST https://api.mcx-ventures.com/v2/brief
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcx-ventures-domain-intelligence-brief-c55b9a47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__XFNLe_bedLcdf9a2P8c6

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 mcx-ventures-domain-intelligence-brief-c55b9a47 -d '<json body>'
```

Example prompt: Give me a domain intelligence brief on quantum computing startups in Europe — use these two URLs as sources: https://example.com/qc-report and https://example.com/eu-startups.

## When to prefer this

Choose this endpoint when you need a fast, sourced intelligence brief on a specific topic or domain — especially when you want to supply your own source materials and get back a transparent sourcing map. It sits between a raw web search and a deep multi-source synthesis (also on this provider), making it ideal for decision-support briefs where provenance matters but deep adversarial verification is not required.

## Known failure modes

- Missing required 'query' field returns a validation error
- Invalid or inaccessible URLs in 'sources' may be silently skipped or cause partial results
- Query too vague may produce a low-confidence or shallow brief
- Exceeding 20 sources in the array triggers a schema validation error
- Payment failure (x402) blocks the request before processing

## How this service works

Domain intelligence brief with sourcing map

## Output

A structured intelligence brief covering the queried topic or domain, accompanied by a sourcing map that traces findings back to their origins — giving the agent both synthesized insight and provenance for each claim.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Question or topic."
      },
      "sources": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "maxItems": 20,
       "description": "Optional source texts or URLs."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcx-ventures-domain-intelligence-brief-c55b9a47/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.mcx-ventures.com](https://www.zero.xyz/host/api.mcx-ventures.com/llms.txt)
