# Stablecoin Full Risk Profile

> Stablecoin Full Risk Profile is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a comprehensive depeg-risk profile for a stablecoin including peg status, supply data, contract addresses, and a 0-100 risk score with per-signal reasoning.

## Facts

- Endpoint: GET https://api.agentstools.dev/stablecoin/profile
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-full-risk-profile-51e4a1dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BeqvBrf7wPg1w5iJx0hwv

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 stablecoin-full-risk-profile-51e4a1dc
```

Example prompt: Can you pull the full depeg risk profile for USDC — I want to know the current peg deviation, collateral mechanism, circulating supply across chains, and the risk score with the reasons behind it?

## When to prefer this

Use this endpoint when you need a comprehensive, fused stablecoin risk assessment including peg health, supply integrity, collateral type, and a scored risk verdict — especially when you need the on-chain totalSupply cross-check and divergence flag that goes beyond simple price feeds. Prefer over raw price feeds when you need the full risk narrative and multi-signal score.

## Known failure modes

- Unknown symbol returns a 404 or empty result
- Ambiguous address without a chain parameter may fail or return wrong chain data
- On-chain cross-check may lag for recently deployed contracts
- Rate limiting or payment failure (x402) if USDC not provided
- Chain not supported returns an error or partial data

## How this service works

Full stablecoin risk profile for a symbol, or a contract address with its chain. Fuses identity and collateral mechanism, the peg (price, deviation from one dollar and a depeg status), supply (total and per-chain circulating with an independent on-chain totalSupply cross-check and a divergence flag), known contract addresses, and a deterministic 0-100 depeg-risk score with rating and per-signal reasons.

## Output

A structured risk profile including: identity and collateral mechanism type, current peg price and deviation from $1 with a depeg status flag, total and per-chain circulating supply with an independent on-chain totalSupply cross-check and a divergence flag, known contract addresses, and a deterministic 0-100 depeg-risk score with a letter/tier rating and per-signal explanations.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain for the address and to prefer for on-chain verify"
      },
      "symbol": {
       "type": "string",
       "description": "Stablecoin ticker, such as USDC, or a DefiLlama id"
      },
      "address": {
       "type": "string",
       "description": "Contract address (alternative to symbol)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-full-risk-profile-51e4a1dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
