# MCX Ventures Cross-Source Correlation Analysis

> MCX Ventures Cross-Source Correlation Analysis is a paid API for AI agents from api.mcx-ventures.com, paid per call via x402, $3/call, status unknown (last checked 2026-09-14).

Analyzes a query or topic by correlating information across multiple provided sources or URLs to surface patterns, relationships, and synthesized insights.

## Facts

- Endpoint: POST https://api.mcx-ventures.com/v2/correlation
- Price: $3/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-cross-source-correlation-analysis-88206dc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dx2Aqgi1h-uMO_GGzPtfC

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-cross-source-correlation-analysis-88206dc8 -d '<json body>'
```

Example prompt: Can you run a cross-source correlation analysis on whether central bank rate hikes reliably suppress inflation, using these three sources: [Fed policy paper URL], [IMF working paper URL], and [Reuters article URL]?

## When to prefer this

Choose this endpoint when you need to compare, contrast, or synthesize information from multiple distinct sources around a specific question or topic — especially when identifying patterns, agreements, or contradictions across heterogeneous inputs. Prefer it over single-source summarization endpoints when cross-source relationships are the goal. It is distinct from adversarial verification (which stress-tests claims) and deep synthesis (which aggregates without explicit correlation framing).

## Known failure modes

- Missing required query field returns validation error
- Sources array exceeds 20 items limit causing rejection
- Invalid URL in sources array may cause fetch failure or partial results
- Insufficient source content may yield low-confidence or empty correlation
- Network timeout if external URLs are slow to retrieve
- Ambiguous or overly broad query may produce generic analysis

## How this service works

Cross-source correlation analysis

## Output

Returns a structured correlation analysis identifying patterns, agreements, contradictions, and synthesized relationships found across the provided sources relative to the query. Output likely includes a summary of cross-source findings, key correlations or divergences, and supporting evidence drawn from the input texts or URLs.

## 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-cross-source-correlation-analysis-88206dc8/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)
