# StableJack DeFi Entity Discovery

> StableJack DeFi Entity Discovery 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).

Discovers and returns structured information about DeFi entities (protocols, platforms, vaults, etc.) via StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/defi_entity_discovery
- 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-defi-entity-discovery-4e2ed686
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cuLROjt-gh6o3PG-44Eck

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-defi-entity-discovery-4e2ed686 -d '<json body>'
```

Example prompt: Can you look up DeFi entity discovery for Aave — I want to know what StableJack's research API returns about it as a protocol, including its category and key metadata?

## When to prefer this

Use this endpoint when you need structured, agent-ready metadata about a specific DeFi protocol, vault, or platform and want a curated research data source rather than scraping raw blockchain data. It is best suited for protocol discovery, entity classification, and pre-trade or portfolio research workflows within the DeFi domain.

## Known failure modes

- Unknown or unsupported DeFi entity returns empty data or error
- Malformed request body causes validation error
- Payment failure (insufficient USDC balance) blocks the call
- Entity name ambiguity may return unexpected or multiple results
- API downtime or timeout returns non-OK response

## How this service works

Retrieve defi entity discovery through StableJack's agent-ready research API.

## Output

Returns a JSON object with an 'ok' boolean status, the tool name used, and a 'data' object containing structured DeFi entity information such as protocol name, category, chain, TVL indicators, and other agent-readable metadata about the queried entity.

## 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-defi-entity-discovery-4e2ed686/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)
