# Stablecoin Full Census (Latest Day, Sorted by Market Cap)

> Stablecoin Full Census (Latest Day, Sorted by Market Cap) is a paid API for AI agents from aeml-x402.zeabur.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Returns a full enumeration of all tracked stablecoins ranked by market capitalization for the most recent day, including lifecycle status flags for depegged or terminated coins

## Facts

- Endpoint: GET https://aeml-x402.zeabur.app/stable/census
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-full-census-latest-day-sorted-by-market-cap-0e26a367
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4y7QzwE_tvdqhKWwnbiix

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-census-latest-day-sorted-by-market-cap-0e26a367
```

Example prompt: Pull up the full stablecoin census for today — I want every stablecoin ranked by market cap, and flag any that are depegged or have been terminated.

## When to prefer this

Use this endpoint when you need a broad, ranked snapshot of the entire stablecoin market in a single call — especially when you want to identify depegged or terminated coins across the full universe without querying individual coins. Prefer it over single-entity endpoints (like the stablecoin triangle endpoint) when the goal is market-wide surveillance, ranking, or screening rather than deep-dive analysis of one coin.

## Known failure modes

- Payment failure — x402 USDC payment not processed, returns 402 Payment Required
- Upstream data unavailable — census data not yet populated for the current day
- Service downtime on zeabur.app hosting — returns 5xx error
- Rate limiting or authentication issues — returns 4xx error

## How this service works

[BATCH+PROOF] Full stablecoin census, latest day, ranked by market cap; lifecycle flags terminated and depegged. Add ?verifiable=1 and every row carries _hash_core so you can recompute the hash offline without trusting us. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed.

## Output

An object containing a 'rows' array of stablecoin records (each with name, market cap, lifecycle/depeg status, and related fields) sorted by market cap descending for the latest day, plus a 'count' integer indicating the total number of stablecoins enumerated.

## 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"
    },
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-full-census-latest-day-sorted-by-market-cap-0e26a367/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aeml-x402.zeabur.app](https://www.zero.xyz/host/aeml-x402.zeabur.app/llms.txt)
