# Market Intelligence Compare Endpoint

> Market Intelligence Compare 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-17).

Compares market intelligence data across multiple assets or instruments via a GET request

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/compare
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-intelligence-compare-endpoint-55d971dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8XPUmTUcNTvZfc7h1pxKt

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-compare-endpoint-55d971dd
```

Example prompt: Can you compare the market intelligence data for Bitcoin and Ethereum side by side so I can see which one is performing better right now?

## When to prefer this

Choose this endpoint when you need to compare two or more market assets or financial instruments against each other rather than retrieving standalone data for a single asset. It is best suited for relative analysis and benchmarking tasks where side-by-side intelligence is needed.

## Known failure modes

- Missing required query parameters returns 400 error
- Invalid or unrecognized asset symbols return empty or error response
- Payment not processed results in 402 Payment Required
- Rate limiting may trigger 429 errors under high usage
- Service downtime returns 503 or connection timeout

## How this service works

Web site created using create-react-app

## Output

A JSON response containing comparative market intelligence data across the requested assets or instruments, including relative performance metrics and analysis data points.

## 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": [
      "GET"
     ],
     "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": {
  "example": "JSON response for this endpoint"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-intelligence-compare-endpoint-55d971dd/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)
