# Market Intelligence API - Intelligence Summary

> Market Intelligence API - Intelligence Summary 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).

Returns a summarized market intelligence snapshot covering live trading and market data insights

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/summary
- 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-intelligence-summary-4abc6d85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BgqixY-wjgHvGqzS98XoD

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-summary-4abc6d85
```

Example prompt: Can you pull the latest market intelligence summary from the Market Intelligence API so I can see the current trading signals and market conditions?

## When to prefer this

Choose this endpoint when you need a quick, high-level summary of market intelligence rather than raw tick data or granular historical data. Best suited for agents making pre-trade decisions, generating morning market briefings, or monitoring overall market sentiment in real time.

## Known failure modes

- Missing or invalid authentication headers may return 401 Unauthorized
- Insufficient payment (x402 protocol not fulfilled) returns 402 Payment Required
- Service unavailability or upstream data feed issues may return 503
- Rate limiting may occur if too many requests are sent in rapid succession
- Empty or stale data if market feeds are delayed or offline

## How this service works

Live market intelligence data

## Output

A JSON object containing a summarized market intelligence report, likely including current market conditions, aggregated trading signals, asset-level insights, and trend indicators relevant to active trading decisions.

## 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-api-intelligence-summary-4abc6d85/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)
