# Stablecoin Reserves Lookup

> Stablecoin Reserves Lookup is a paid API for AI agents from agentwares-stablecoin.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns reserve data for a given stablecoin by its ticker symbol

## Facts

- Endpoint: GET https://agentwares-stablecoin.vercel.app/v1/reserves/:symbol
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-reserves-lookup-18fbc063
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BoibOjusLCd-a5ev_0TkE

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-reserves-lookup-18fbc063
```

Example prompt: What are the current reserves backing USDC — can you pull the reserve data for that stablecoin?

## When to prefer this

Use this endpoint when you need on-demand, per-symbol stablecoin reserve data and are willing to pay a small per-call fee via x402 micropayment. Prefer this over manual research when building automated DeFi risk assessment, compliance checks, or portfolio monitoring workflows that require programmatic reserve lookups.

## Known failure modes

- Unknown or unsupported stablecoin symbol returns an error or empty result
- Malformed symbol parameter causes a 400-level error
- Upstream reserve data source unavailable causes a 500-level error
- Payment not fulfilled results in a 402 payment required response

## Output

Returns reserve information for the requested stablecoin symbol, including data about the backing assets or collateral supporting the stablecoin's peg.

## 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"
    },
    "method": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-reserves-lookup-18fbc063/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentwares-stablecoin.vercel.app](https://www.zero.xyz/host/agentwares-stablecoin.vercel.app/llms.txt)
