# StableCrypto DeFiLlama Stablecoin Chain Distribution

> StableCrypto DeFiLlama Stablecoin Chain Distribution 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 the distribution of stablecoin market cap across different blockchain networks

## Facts

- Endpoint: POST https://stablecrypto.dev/api/defillama/stablecoin-chains
- 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-b414bdee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rM2Avps4Rb1G9j0pucy8p

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-b414bdee -d '<json body>'
```

Example prompt: Show me how stablecoins are distributed across all blockchain networks right now — I want to see which chains hold the most stablecoin market cap according to DeFiLlama.

## When to prefer this

Use this endpoint when you need a cross-chain view of stablecoin liquidity distribution, specifically sourced from DeFiLlama. Prefer this over general crypto price endpoints when the question is about how stablecoin value is allocated across blockchain networks rather than price or individual token data.

## Known failure modes

- DeFiLlama API upstream unavailable — returns error or empty response
- Network timeout if DeFiLlama data source is slow
- Stale data if DeFiLlama cache is not refreshed
- Malformed POST request body may return 400 error

## How this service works

Get stablecoin distribution across chains

## Output

A breakdown of stablecoin market capitalization distributed across different blockchain networks, sourced from DeFiLlama, showing how much stablecoin value resides on each chain.

## 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-b414bdee/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)
