# Market Intelligence API - Trading Integrations MCP Endpoint

> Market Intelligence API - Trading Integrations MCP Endpoint is a paid API for AI agents from api.marketintelligenceapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-19).

Provides live market intelligence data for trading integrations via a POST endpoint on the MCP path

## Facts

- Endpoint: POST https://api.marketintelligenceapi.com/mcp
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-intelligence-api-trading-integrations-mcp-endpoint-9f7dd06f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S3Kz6hh8AqrlXO-SOoOkM

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 market-intelligence-api-trading-integrations-mcp-endpoint-9f7dd06f -d '<json body>'
```

Example prompt: Pull the latest live market intelligence data from marketintelligenceapi.com for my trading integration — I need current market metrics via a POST request.

## When to prefer this

Use this endpoint when you need live market intelligence data for trading integrations and are willing to pay $0.01 USDC per call via x402 micropayment protocol. Prefer this over free alternatives when real-time accuracy and reliability are important for financial decision-making.

## Known failure modes

- Invalid or malformed POST body returns error
- Payment not included or insufficient USDC results in 402 Payment Required
- Endpoint unavailable or rate-limited returns 5xx error
- Schema mismatch (missing required 'input' or 'output' fields) causes request rejection
- No meaningful market data returned if query parameters are not properly specified

## How this service works

Web site created using create-react-app

## Output

A JSON response containing live market intelligence data relevant to trading integrations, including market metrics, prices, or signals as provided by the marketintelligenceapi.com service.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "description": "Example JSON response returned by this endpoint"
    }
   },
   "additionalProperties": true
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": []
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-intelligence-api-trading-integrations-mcp-endpoint-9f7dd06f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.marketintelligenceapi.com](https://www.zero.xyz/host/api.marketintelligenceapi.com/llms.txt)
