# Stablecoin Deep Profile & Risk Intelligence

> Stablecoin Deep Profile & Risk Intelligence is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Returns a deep profile of any stablecoin including peg mechanism, circulating supply by chain, audit status, and mint/redeem rules for risk assessment.

## Facts

- Endpoint: GET https://api.x402node.dev/market/stablecoin-info
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-deep-profile-risk-intelligence-8f6e550f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ucmQEOi--Uhf2s4wfqchF

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-deep-profile-risk-intelligence-8f6e550f
```

Example prompt: Before I allocate funds into FRAX, can you pull a deep profile on it — peg mechanism, whether it's been audited, circulating supply breakdown by chain, and mint/redeem rules so I can assess the risk?

## When to prefer this

Choose this endpoint when an AI agent or risk system needs live, structured stablecoin intelligence before holding or transacting — especially peg mechanism classification, multi-chain supply distribution, and audit provenance — that a static LLM knowledge base cannot reliably provide. Prefer it over generic crypto price feeds when the question is about stablecoin safety, collateral backing, or reserve composition rather than price.

## Known failure modes

- Unknown or unsupported stablecoin symbol returns a 404 or empty result
- Newly launched stablecoins may lack audit data or cross-chain supply figures
- Supply data may be slightly stale if the chain indexer lags
- Payment failure (402) if USDC payment of $0.006 is not attached correctly via x402 protocol

## How this service works

Deep profile of any stablecoin - peg mechanism (fiat/crypto/algorithmic), circulating supply by chain, audit status and mint/redeem rules - risk intelligence agents need before holding that LLMs cannot look up live. stablecoin info, stablecoin reserves, peg mechanism, stablecoin audit, circulating supply, stablecoin risk Accepts payment on Base or Solana — either network works.

## Output

A structured profile of the requested stablecoin including: its peg mechanism type (fiat-backed, crypto-collateralized, or algorithmic), circulating supply figures broken down by blockchain, current audit status, and the rules governing minting and redemption — giving risk-relevant intelligence about holding or interacting with that stablecoin.

## Example request

```json
{
 "symbol": "USDC"
}
```

## 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": [
      "symbol"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "ENS name e.g. vitalik.eth (optional)"
      },
      "symbol": {
       "type": "string",
       "description": "Stablecoin symbol, e.g. USDT, USDC, DAI, FRAX"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-deep-profile-risk-intelligence-8f6e550f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
