# agent402.tools DeFi Dashboard (Bundled)

> agent402.tools DeFi Dashboard (Bundled) is a paid API for AI agents from agent402.tools, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Executes a bundled DeFi dashboard workflow in one call, returning total TVL, ETH price, Base gas, and global crypto stats via a single x402 payment.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/defi-dashboard
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-defi-dashboard-bundled-8667ed24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RnzME5WxTJU9xBY2PaQkL

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 agent402-tools-defi-dashboard-bundled-8667ed24 -d '<json body>'
```

Example prompt: Give me a full DeFi market snapshot right now — total TVL across all protocols, current ETH price, Base network gas, and global crypto market stats, all in one shot.

## When to prefer this

Choose this endpoint when you need a comprehensive DeFi market overview — TVL, ETH price, gas, and global stats — in a single API call rather than making four separate requests. It is more cost-efficient and faster than calling each sub-tool individually, and is ideal for dashboard applications, automated reporting, or any agent workflow that needs a full crypto market snapshot at once.

## Known failure modes

- Payment not included or insufficient (x402 payment required, $0.15 USDC)
- One or more underlying sub-tools (defi-tvl, crypto-price, gas-snapshot, crypto-global) unavailable — partial results may be returned
- Malformed request body (bodyType or method mismatch)
- Rate limiting or provider downtime for upstream data sources

## How this service works

Bundled execution of the DeFi dashboard workflow - DeFi market overview: total TVL, ETH price, Base gas, and global crypto stats in one call. One x402 payment runs 4 underlying tools (defi-tvl, crypto-price, gas-snapshot, crypto-global); partial-success per step.

## Output

Returns a bundled response combining: total DeFi TVL (from defi-tvl), current ETH price (from crypto-price), Base network gas snapshot (from gas-snapshot), and global crypto market statistics (from crypto-global) — all retrieved in a single x402-paid call for $0.15 USDC.

## 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": {
     "required": [],
     "properties": {}
    },
    "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": [
      "pack",
      "args",
      "steps",
      "summary"
     ],
     "properties": {
      "args": {
       "type": "object"
      },
      "pack": {
       "type": "string"
      },
      "steps": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ok": {
          "type": "boolean"
         },
         "slug": {
          "type": "string"
         },
         "result": {
          "type": "object"
         }
        }
       }
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {},
  "pack": "defi-dashboard",
  "steps": [
   {
    "ok": true,
    "slug": "defi-tvl",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-price",
    "result": {}
   },
   {
    "ok": true,
    "slug": "gas-snapshot",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-global",
    "result": {}
   }
  ],
  "summary": "4/4 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-defi-dashboard-bundled-8667ed24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
