# StableJack Oracle Intelligence API

> StableJack Oracle Intelligence API 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-13).

Retrieves oracle intelligence data and insights for crypto markets through StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/oracle_intelligence
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablejack-oracle-intelligence-api-a5ce7ace
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ACVkzAzqM17wrsDXAzoU2

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-oracle-intelligence-api-a5ce7ace -d '<json body>'
```

Example prompt: Pull oracle intelligence from StableJack for Ethereum — I want the latest oracle-based market insights and signals to help me understand what the data is saying about ETH right now.

## When to prefer this

Choose this endpoint when you need oracle-specific intelligence and on-chain data signals for crypto assets or DeFi protocols, especially when you want research-grade oracle data rather than raw price feeds or technical indicators. Prefer this over the technical indicator or social research endpoints when the focus is oracle-layer insights. Best used for DeFi research, protocol analysis, and market intelligence workflows where oracle data quality and signal derivation matter.

## Known failure modes

- Missing or invalid query parameters may return an error or empty result
- Unsupported asset or scope identifiers may fail with a validation error
- Payment failure (insufficient USDC balance) will block the request
- Rate limiting or service unavailability may return 5xx errors
- Overly broad or ambiguous query scope may return incomplete results

## How this service works

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

## Output

Returns oracle intelligence data including on-chain signals, oracle-derived market insights, and research-grade information relevant to the queried asset, protocol, or market scope, delivered in an agent-ready format.

## 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-oracle-intelligence-api-a5ce7ace/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)
