# stableintel-profile

> stableintel-profile is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a full risk profile for a stablecoin — fusing peg data, supply figures, collateral mechanism, contract addresses, and a deterministic 0-100 depeg-risk score with per-signal reasoning.

## Facts

- Endpoint: GET https://payai.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/stableintel-profile-76699baa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xf_nPDbxqK4Xj4ib3cKvw

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 stableintel-profile-76699baa
```

Example prompt: Pull the full stablecoin risk profile for USDC — I want the current peg price, how far it is from $1, the depeg-risk score with reasons, total and per-chain supply, and any supply divergence flags.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional risk profile for a stablecoin in a single call — combining live peg tracking, supply verification, collateral classification, and a scored risk rating with reasons. Prefer it over generic price APIs when you need the depeg-risk score breakdown, on-chain supply cross-checks, or divergence detection. It is especially valuable for DeFi risk workflows, protocol due diligence, automated monitoring agents, and any scenario where a simple price feed is insufficient.

## Known failure modes

- Unknown symbol returns 404 or empty result if the ticker is not recognized
- Contract address without chain specified may fail or be ambiguous
- Address on wrong or unsupported chain returns an error
- Stablecoin with no on-chain data available skips the cross-check and divergence flag
- Rate-limit or payment failure returns 402 if the x402 payment is not completed

## 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: stablecoin identity and collateral mechanism; current peg price, deviation from $1, and depeg status; total and per-chain circulating supply with an independent on-chain totalSupply cross-check and a divergence flag; known contract addresses across chains; and a deterministic 0–100 depeg-risk score with a rating label and per-signal explanations of what is driving the risk.

## 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/stableintel-profile-76699baa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
