# Market Intelligence API - Intelligence Endpoint

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

Fetches live market intelligence data from the /api/v1/intelligence endpoint

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-intelligence-api-intelligence-endpoint-5a097554
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ruhFyBv3EshoUOtJdP2Rc

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-intelligence-endpoint-5a097554
```

Example prompt: Pull the latest market intelligence data from Market Intelligence API so I can see current trading signals and market insights.

## When to prefer this

Use this endpoint when you need live market intelligence data and are willing to pay $0.02 USDC per call via the x402 payment protocol. Prefer this when your agent workflow requires financial market signals or trading insights and you are already integrated with the x402 micropayment system.

## Known failure modes

- Payment failure — x402 payment of $0.02 USDC not completed, returns 402 Payment Required
- Invalid HTTP method — using POST or PUT instead of GET/HEAD/DELETE returns an error
- Network timeout — API host unreachable
- Malformed request body — missing required 'input' object with 'type' and 'method' fields
- Empty or null response if no intelligence data is currently available

## How this service works

Web site created using create-react-app

## Output

Returns JSON containing live market intelligence data, potentially including trading signals, market analysis, price trends, or other financial intelligence metrics. Exact schema is unspecified beyond JSON format.

## 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": []
}
```

## More

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