# StableJack DeFi Market TVL

> StableJack DeFi Market TVL 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 total value locked (TVL) data across DeFi markets via StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/defi_market_tvl
- 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-market-tvl-2946824c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MX_Nc2RagbJpHtyC1D2F7

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-market-tvl-2946824c -d '<json body>'
```

Example prompt: Pull the latest DeFi market TVL data from StableJack so I can see which protocols and chains have the most value locked right now.

## When to prefer this

Choose this endpoint when you need current DeFi market TVL data specifically — total value locked metrics across protocols and chains. Prefer this over general crypto price APIs when the focus is on on-chain liquidity and protocol health. Use this instead of CEX volume endpoints when you need DeFi-specific capital allocation data rather than trading volume.

## Known failure modes

- Invalid or malformed request body returns an error response
- API payment failure (x402 payment not completed) blocks access
- Upstream data unavailability may result in empty or stale TVL data
- Unsupported body type or method returns a validation error
- Network timeout if the data provider is slow to respond

## How this service works

Retrieve defi market tvl through StableJack's agent-ready research API.

## Output

Returns a structured JSON object containing DeFi market total value locked (TVL) data, including TVL figures across protocols and/or chains, with an 'ok' boolean status, the tool name, and a 'data' object containing the TVL metrics.

## 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-market-tvl-2946824c/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)
