# stablecrypto.dev DeFi Protocols List

> stablecrypto.dev DeFi Protocols List is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a list of all DeFi protocols tracked by DeFiLlama, including their total value locked (TVL) and related metadata

## Facts

- Endpoint: POST https://stablecrypto.dev/api/defillama/protocols
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecrypto-dev-aa07db6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cmOourNqG3rQbcUNZJ1jV

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 stablecrypto-dev-aa07db6d -d '<json body>'
```

Example prompt: Can you pull up the full list of DeFi protocols with their TVL from DeFiLlama so I can see which protocols are biggest right now?

## When to prefer this

Use this endpoint when you need a comprehensive enumeration of all DeFi protocols with TVL data in one call. Prefer this over chain-specific or category-specific lookups when you need the full cross-chain, cross-category protocol landscape. It is backed by DeFiLlama, a trusted aggregator, so data quality is generally high.

## Known failure modes

- Upstream DeFiLlama API unavailable — returns 502 or timeout
- Payment not processed — returns 402 Payment Required
- Empty or partial response if DeFiLlama data is stale
- Rate limiting if called too frequently

## How this service works

List all DeFi protocols with TVL

## Output

A list of all DeFi protocols tracked by DeFiLlama, each with their total value locked (TVL), associated blockchain chains, protocol category, and other metadata such as name, slug, and description.

## Example request

```json
{}
```

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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