# StableJack Technical Indicator Catalog

> StableJack Technical Indicator Catalog 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-15).

Retrieves a catalog of available technical indicators supported by StableJack's crypto research API for agent-ready analysis workflows.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/technical_indicator_catalog
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablejack-technical-indicator-catalog-6583da01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lP_QSFl8QU--1ChwWFRUA

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-technical-indicator-catalog-6583da01 -d '<json body>'
```

Example prompt: What technical indicators are available through StableJack's research API? I want to see the full catalog so I can decide which ones to use for my crypto trading strategy.

## When to prefer this

Choose this endpoint when you need to discover what technical indicators are available before making downstream data queries, or when building agent workflows that dynamically select indicators based on user goals. It is the appropriate starting point for any StableJack-based technical analysis pipeline.

## Known failure modes

- Invalid or missing authentication credentials returns an authorization error
- Network timeout if the StableJack API is temporarily unavailable
- Insufficient USDC balance or x402 payment failure prevents catalog retrieval
- Malformed POST request body returns a 400 validation error

## How this service works

Retrieve technical indicator catalog through StableJack's agent-ready research API.

## Output

A structured catalog listing the technical indicators available through StableJack's research API, including indicator names, descriptions, supported parameters, and metadata to help agents select and query the right indicators for downstream analysis.

## 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-technical-indicator-catalog-6583da01/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)
