# Market Intelligence API – Symbol Intelligence Lookup

> Market Intelligence API – Symbol Intelligence 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 market intelligence data (price, signals, or analytics) for a given crypto or US equity symbol

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/%7Bsymbol%7D
- 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-symbol-intelligence-lookup-f44f4ce4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__CI9zHpJoT0GOZod8pnON

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-symbol-intelligence-lookup-f44f4ce4
```

Example prompt: Can you pull up the market intelligence for AAPL from the Market Intelligence API?

## When to prefer this

Choose this endpoint when you need on-demand market intelligence or trading signals for a specific crypto or US equity ticker symbol, especially in agentic workflows that require per-symbol financial analytics at low cost ($0.005 per call). Best suited for single-symbol lookups rather than bulk data needs.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Payment not processed results in 402 Payment Required response
- Symbol not found for unsupported assets (e.g. non-US equities or obscure tokens)
- Rate limiting or quota exceeded may return 429 Too Many Requests
- Malformed symbol path parameter returns 400 Bad Request

## How this service works

Web site created using create-react-app

## Output

A JSON response containing market intelligence data for the requested symbol, likely including price information, trading signals, sentiment, or other analytics relevant to the crypto or US equity queried.

## 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
}
```

## 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-symbol-intelligence-lookup-f44f4ce4/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)
