# Rigoblock DeFi Tool Catalog

> Rigoblock DeFi Tool Catalog is a paid API for AI agents from trader.rigoblock.com, paid per call via x402, $0.0024/call, status unknown (last checked 2026-09-14).

Returns the full catalog of all 40+ available DeFi tools on the Rigoblock trading platform, including JSON schemas, categories, and access requirements for each.

## Facts

- Endpoint: GET https://trader.rigoblock.com/api/tools
- Price: $0.0024/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trader-rigoblock-com-df304d4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g2DXWu4Fu5Xg9DMUAKWZb

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 trader-rigoblock-com-df304d4c
```

Example prompt: Show me the full catalog of Rigoblock DeFi tools — I want to see all 40+ available operations with their schemas, categories, and any access requirements so I know what I can do with Rigoblock vaults.

## When to prefer this

Use this endpoint as a first step when an agent needs to discover what Rigoblock tools exist before invoking them — especially when the agent doesn't know which specific operation is available, what parameters are required, or what categories of DeFi activity are supported. Prefer over manual documentation lookup when building dynamic tool-selection pipelines.

## Known failure modes

- Payment not provided or invalid — 402 response requiring x402 USDC micropayment
- Network timeout or upstream service unavailable — 5xx error
- Malformed query parameters — 400 validation error
- Empty or partial catalog returned if service is degraded

## How this service works

Rigoblock DeFi tool discovery. Returns the full catalog with JSON schemas, categories, and access requirements for all direct-invocation tools.

## Output

A full catalog of all 40+ Rigoblock DeFi tools, each with its JSON schema, category classification, description, and access/authentication requirements. Useful as a discovery step before invoking specific tools like swaps, bridging, staking, or vault management.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tools": {
       "type": "array"
      },
      "toolCount": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trader-rigoblock-com-df304d4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trader.rigoblock.com](https://www.zero.xyz/host/trader.rigoblock.com/llms.txt)
