# Market Intelligence API – Single Symbol Lookup

> Market Intelligence API – Single Symbol Lookup 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-19).

Returns live market intelligence data for a given crypto or US equity ticker symbol

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/MSFT
- Price: $0.005/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-single-symbol-lookup-57406843
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ep739WaFnpBDhw5yawJch

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-single-symbol-lookup-57406843
```

Example prompt: Pull the latest market intelligence for MSFT right now — I want to see current metrics and signals for Microsoft stock.

## When to prefer this

Choose this endpoint when you need real-time market intelligence or trading signals for a specific US equity or crypto ticker and want a pay-per-call micropayment model (x402). Prefer it over bulk data providers when you only need a single symbol lookup on demand without a subscription.

## Known failure modes

- Invalid or unsupported symbol returns an error response
- Network timeout if the upstream market data feed is slow
- Rate limiting if the per-call micropayment is not processed correctly via x402
- Symbol not found if the ticker does not exist in the supported universe

## How this service works

Live market intelligence data

## Output

A JSON object containing live market intelligence data for the requested ticker symbol, including relevant market metrics, signals, and possibly price-related information for US equities or crypto assets.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Crypto or US equity symbol"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "description": "Example JSON response returned by this endpoint"
    }
   },
   "additionalProperties": true
  }
 },
 "additionalProperties": false
}
```

## More

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