# Market Intelligence Events API

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

Retrieves market intelligence events data, likely including trading signals, market events, or financial news relevant to trading integrations

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/events
- 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-events-api-48a0fc76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i1D3-QWUrGqovOyiiKQNC

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-events-api-48a0fc76
```

Example prompt: Pull the latest market intelligence events from the Market Intelligence API so I can see what trading signals or financial events are currently being tracked.

## When to prefer this

Choose this endpoint when you need real-time or near-real-time market intelligence events from the marketintelligenceapi.com platform, particularly for trading integrations that require event-driven signals. It is a low-cost ($0.01 USDC) pay-per-call endpoint suitable for agents polling for financial market developments. Prefer this over general news APIs when you specifically need structured trading-oriented event intelligence.

## Known failure modes

- Payment not provided (402 response) — endpoint requires $0.01 USDC x402 payment per call
- Invalid or missing authentication credentials
- Empty event list if no current market events are available
- Rate limiting if too many requests are made in quick succession
- Malformed JSON response if upstream data pipeline has issues

## How this service works

Live market intelligence data

## Output

Returns a JSON response containing market intelligence events, which may include trading signals, financial news events, market anomalies, or other intelligence data points relevant to trading integrations. The exact structure is not fully documented, but the response is JSON-formatted.

## 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-events-api-48a0fc76/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)
