# StableJack Crypto ETF Flows

> StableJack Crypto ETF Flows 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 cryptocurrency ETF flow data (inflows/outflows) via StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/crypto_etf_flows
- 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-crypto-etf-flows-a5712a26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lnTV4bLSdgUEbN086puzP

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-crypto-etf-flows-a5712a26 -d '<json body>'
```

Example prompt: Pull the latest crypto ETF flow data from StableJack — I want to see which funds are seeing the biggest inflows and outflows right now to gauge institutional sentiment.

## When to prefer this

Choose this endpoint when you need structured, agent-ready crypto ETF inflow/outflow data for institutional sentiment analysis or market research. It is purpose-built for AI agents via the x402 protocol, making it ideal for automated pipelines that need reliable ETF flow intelligence without scraping or manual data collection. Prefer this over generic financial data APIs when you specifically need crypto ETF flows in a machine-readable, pay-per-call format.

## Known failure modes

- Invalid or unsupported ETF name/ticker returns an error or empty data object
- Missing required body fields causes a 400-level error
- Payment not settled (x402 protocol failure) results in a 402 Payment Required response
- Stale or unavailable data from upstream providers may return partial results
- Rate limiting or quota exhaustion may block repeated rapid calls

## How this service works

Retrieve crypto etf flows through StableJack's agent-ready research API.

## Output

Returns a structured data object containing ETF flow metrics for cryptocurrency funds, including inflow, outflow, and net flow figures, fund names, and likely time-period breakdowns. The response includes an 'ok' boolean, a 'tool' identifier, and a 'data' object with the flow details.

## 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-crypto-etf-flows-a5712a26/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)
