# StableJack Top Trader Intelligence

> StableJack Top Trader Intelligence is a paid API for AI agents from ai.stable-jack.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves intelligence on top crypto traders, including their positioning, activity, and behavioral patterns, via a paid agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/top_trader_intelligence
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablejack-top-trader-intelligence-3ccb9b83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o6H2YsHiuwgN1KEXIUG_h

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 stablejack-top-trader-intelligence-3ccb9b83 -d '<json body>'
```

Example prompt: Pull the latest top trader intelligence from StableJack — I want to see what the best-performing crypto traders are currently positioned in.

## When to prefer this

Choose this endpoint when you need curated intelligence specifically about top-performing or elite crypto traders — their current positioning, recent activity, or behavioral patterns. Prefer this over general market data endpoints when the user wants to follow smart money, identify what whales are doing, or validate a trade idea against what high-performing traders are currently positioned in. Use sibling endpoints for DeFi yields, CEX volumes, ETF flows, or token unlocks.

## Known failure modes

- Missing or malformed 'input' object in request body returns validation error
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Empty or unsupported body parameters may return partial or empty data
- Network timeout or server error returns 5xx response
- Invalid bodyType enum value causes schema rejection

## How this service works

Retrieve top trader intelligence through StableJack's agent-ready research API.

## Output

Returns a structured JSON object with top trader intelligence data, including trader positioning, activity, and behavioral metrics relevant to current crypto markets. The response includes an 'ok' status boolean, a 'tool' identifier string, and a 'data' object containing the trader intelligence payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "tool",
      "data"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object",
       "properties": {},
       "additionalProperties": true
      },
      "tool": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablejack-top-trader-intelligence-3ccb9b83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai.stable-jack.com](https://www.zero.xyz/host/ai.stable-jack.com/llms.txt)
