# TruthBear Stablecoin Deaths

> TruthBear Stablecoin Deaths is a paid API for AI agents from api.truthbear.co, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-15).

Returns a forensic snapshot batch of terminated stablecoins including price, supply, collateral, redemption data, termination type, confirmed death date, and days alive — with offline-verifiable record hashes.

## Facts

- Endpoint: GET https://api.truthbear.co/stablecoin-deaths
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthbear-stablecoin-deaths-8de748f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b-sMI3JorDyTVfascMDOC

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 truthbear-stablecoin-deaths-8de748f7
```

Example prompt: Pull the full stablecoin deaths dataset from TruthBear — I want the forensic snapshots of every terminated stablecoin including price, supply, collateral, termination type, confirmed death date, and days alive, and include the hash core so I can verify each record offline.

## When to prefer this

Choose this endpoint when you need a neutral, forensic, batch record of all historically terminated stablecoins for base-rate analysis, post-mortem research, academic citation, or risk modeling. It is uniquely suited for offline-verifiable audit workflows due to its record_hash infrastructure. Prefer this over live monitoring endpoints when your use case is retrospective or statistical rather than predictive.

## Known failure modes

- 422 no_charge — no matching stablecoin death data available, not billed
- Network timeout on large batch payload
- Invalid query parameter value for verifiable field
- Payment failure via x402 protocol before data is returned

## How this service works

[BATCH+PROOF] Stablecoin death samples - a neutral record: the full pre-mortem snapshot of terminated stablecoins (price, supply, collateral, redemption) plus lifecycle context (termination type, confirmed death date, days alive). Forensic depth for base-rate and post-mortem work, not a rating and not an endorsement. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed. Every record carries an offline-recomputable record_hash. $0.09 per call.

## Output

A batch JSON response containing one record per terminated stablecoin, each with pre-mortem snapshots (price, supply, collateral, redemption), lifecycle context (termination type, confirmed death date, days alive), and an offline-recomputable record_hash. Optionally includes _hash_core per row for full offline verification. Returns 422 with no charge if no data is available.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "verifiable": {
       "type": "string",
       "description": "optional - set to 1 to attach `_hash_core` per row (the canonical pre-image of the record_hash for that row) so you can recompute and verify fully offline; omitted by default to keep the payload small - for online verification use free GET /gauge/verify?hash="
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "const": "json"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truthbear-stablecoin-deaths-8de748f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.truthbear.co](https://www.zero.xyz/host/api.truthbear.co/llms.txt)
