# Market Intelligence API – Top Activity

> Market Intelligence API – Top Activity 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 top market activity data, surfacing the most actively traded or volatile instruments at a given moment

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/top-activity
- 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-top-activity-619d6403
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sKMA0Pj_sugd6Cqr7sHVu

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-top-activity-619d6403
```

Example prompt: Pull the top market activity right now from Market Intelligence API — I want to see which instruments or assets are seeing the most action.

## When to prefer this

Use this endpoint when you need a ranked, real-time snapshot of the most active market instruments without specifying a particular asset — ideal for broad market surveillance, morning briefings, or feeding a top-movers alert system. Prefer this over individual asset lookup endpoints when you want a holistic view of market activity rather than details on a known symbol.

## Known failure modes

- 402 Payment Required if x402 payment header is missing or insufficient
- Rate limiting if called too frequently without valid payment
- Empty or stale results if market data feed is unavailable
- Malformed JSON if upstream data provider is degraded
- Timeout if market data aggregation is slow

## How this service works

Web site created using create-react-app

## Output

A JSON response listing the top actively traded or high-volume market instruments, likely including asset symbols, activity scores or volumes, price change metrics, and rankings based on real-time or near-real-time market data.

## 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-top-activity-619d6403/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)
