# Market Intelligence API - Buying Intelligence

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

Returns live buying-side market intelligence signals and data for trading analysis

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/buying
- Price: $0.005/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-api-buying-intelligence-7919d60f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_41GIt7HHtXOSA-lrbc0dT

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-buying-intelligence-7919d60f
```

Example prompt: Pull the current buying intelligence from the Market Intelligence API for BTC/USD so I can see the latest buy-side signals before placing a trade.

## When to prefer this

Use this endpoint when you need live buying-side market intelligence signals for trading decisions and want pay-per-call access without a subscription. Prefer this over subscription-based market data services for on-demand, low-frequency queries where cost-per-call at $0.005 USDC is favorable.

## Known failure modes

- Payment required (402) if x402 payment header is missing or insufficient
- Empty or stale data if market data feed is unavailable
- Rate limiting if too many requests are made in a short period
- Invalid or unrecognized asset symbol returns an error or empty result
- Timeout if upstream market data provider is slow to respond

## How this service works

Live market intelligence data

## Output

A JSON response containing buy-side market intelligence data, including buying signals, indicators, and related metrics that inform trading decisions for the queried instrument or market.

## 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-buying-intelligence-7919d60f/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)
