# Strale Stablecoin Flow Check

> Strale Stablecoin Flow Check is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-14).

Query stablecoin supply and circulation data by blockchain network or by stablecoin, or retrieve an overall market summary, sourced from DeFi Llama.

## Facts

- Endpoint: GET https://api.strale.io/x402/stablecoin-flow-check
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-10607fdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tP1_80180xBTo7e_mIwvp

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 api-strale-io-10607fdb
```

Example prompt: What's the current stablecoin supply on Ethereum — specifically how much USDC is in circulation there?

## When to prefer this

Use this endpoint when you need up-to-date stablecoin supply, circulation, or flow data by blockchain network or by stablecoin asset, especially when you want DeFi Llama-sourced data in a simple GET request without building DeFi Llama API integration yourself.

## Known failure modes

- Unknown chain name returns empty or error response
- Unknown stablecoin name returns empty or error response
- DeFi Llama upstream outage causes stale or unavailable data
- Payment failure (402) if x402 USDC payment is not properly attached

## How this service works

Check stablecoin supply and flows. Query by chain (stablecoin supply on Ethereum, Base, etc.), by stablecoin (USDC market cap and circulation), or get the overall market summary. Data from DeFi Llama.

## Output

Returns stablecoin supply and flow data for the specified chain (e.g. Ethereum, Base, Solana) and/or stablecoin (e.g. USDC, USDT), including market cap and circulation figures. When no filters are provided, returns an overall stablecoin market summary. Data is sourced from DeFi Llama.

## Example request

```json
{
 "chain": "Ethereum",
 "stablecoin": "USDC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "Chain name (e.g., 'Ethereum', 'Base', 'Solana')"
  },
  "stablecoin": {
   "type": "string",
   "description": "Stablecoin name (e.g., 'USDC', 'USDT')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "chain": {
  "type": "string"
 },
 "details": {
  "type": "object"
 },
 "query_type": {
  "type": "string"
 },
 "stablecoin": {
  "type": "string"
 },
 "total_supply_usd": {
  "type": "number"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-10607fdb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
