Barker's stablecoin market snapshot: total market cap, yield-bearing cap, asset distributi
Barker's stablecoin market snapshot: total market cap, yield-bearing cap, asset distribution, chain distribution. Use for 'stablecoin market cap', 'USDT market share', '稳定币市场份额'. share_pct fields are decimals (0.425 = 42.5%).
1000 (raw units)
price
32
calls / 30d
2
unique payers
2026-09-18
updated
Provider
mcp.barker.money · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:196",
"payTo": "0x83f15f5bea445109e255ab82622fbdfecd1e4c9f",
"asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "aggr_deferred",
"network": "eip155:196",
"payTo": "0x83f15f5bea445109e255ab82622fbdfecd1e4c9f",
"asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x83f15f5bea445109e255ab82622fbdfecd1e4c9f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:1",
"payTo": "0x83f15f5bea445109e255ab82622fbdfecd1e4c9f",
"asset": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x83f15f5bea445109e255ab82622fbdfecd1e4c9f",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x83f15f5bea445109e255ab82622fbdfecd1e4c9f",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"asset_distribution": [
{
"asset_symbol": "USDC",
"share_pct": 0.154,
"total_tvl": 11217252957
},
{
"asset_symbol": "USDT",
"share_pct": 0.135,
"total_tvl": 9876543210
}
],
"stablecoin_mcap": {
"date": "2026-05-19",
"stablecoin_count": 202,
"total": 339352596460,
"yield_bearing": 27315302928,
"yield_stablecoin_count": 84
}
},
"success": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mcp.barker.money/barker_market_overview" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mcp.barker.money/barker_market_overview");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mcp.barker.money/barker_market_overview")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4018.json, and this resource appears in /discovery/resources and /discovery/search.