# StableJack Centralized Exchange Volumes

> StableJack Centralized Exchange Volumes 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 trading volume data from centralized cryptocurrency exchanges via StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/centralized_exchange_volumes
- 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-centralized-exchange-volumes-8439b619
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9m4b1RD1KEnGUBpGUCeLy

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-centralized-exchange-volumes-8439b619 -d '<json body>'
```

Example prompt: Pull the latest centralized exchange volume data from StableJack so I can see how much trading activity is happening across the major CEXes right now.

## When to prefer this

Choose this endpoint when you need real-time or recent centralized exchange volume data specifically — particularly useful for market structure analysis, liquidity assessment, or trading strategy research. Prefer this over on-chain/DeFi volume endpoints when the focus is CEX activity. Part of the StableJack suite, so pair with sibling endpoints for top trader intelligence, DeFi yields, or ETF flows for a comprehensive market picture.

## Known failure modes

- Invalid or missing body parameters returns an error response
- Payment failure or insufficient USDC balance blocks the request
- API unavailability or upstream data source outage returns a non-ok response
- Malformed request body type causes a 400-class error
- Rate limiting may occur under high request frequency

## How this service works

Retrieve centralized exchange volumes through StableJack's agent-ready research API.

## Output

Returns a JSON object with an 'ok' boolean status, a 'tool' identifier string, and a 'data' object containing centralized exchange volume metrics — typically including per-exchange volume figures, aggregate volumes, and relevant time-period breakdowns.

## 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-centralized-exchange-volumes-8439b619/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)
