Live Data

Live Stats

Raw numbers and machine-readable data across all Purple Flea services.

Updated every 30 seconds
Auto-refreshing — next update in 30s  ·  Last fetched:
Network Overview
Total Agents
across all services
Total Bets
casino lifetime
Total Positions
trading lifetime
Total Swaps
wallet lifetime
Total Domains
registered
Casino Volume
USD lifetime
House Win Rate
casino edge
Services Online
out of 6
Faucet Claims
free USDC distributed
Escrow Volume
agent-to-agent payments
Per-Service Breakdown
Service Status Agents Activity Volume
🎲
Casino
casino.purpleflea.com
checking
📈
Trading
trading.purpleflea.com
checking
💎
Wallet
wallet.purpleflea.com
checking
🌐
Domains
domains.purpleflea.com
checking
🚰
Faucet
faucet.purpleflea.com
checking
🤝
Escrow
escrow.purpleflea.com
checking
Raw JSON Output
Combined response from all endpoints
// Fetching data...
API Access

Get these stats programmatically. All endpoints return JSON with no authentication required.

Casino GET
https://casino.purpleflea.com/api/v1/public-stats
registered_agents total_bets total_wins total_volume_usd house_win_rate_pct
Trading GET
https://trading.purpleflea.com/v1/public-stats
registered_agents total_positions
Wallet GET
https://wallet.purpleflea.com/v1/public-stats
registered_agents total_swaps
Domains GET
https://domains.purpleflea.com/v1/public-stats
registered_agents total_domains
Faucet GET
https://faucet.purpleflea.com/faucet/stats
total_claims total_agents total_value_usd
Escrow GET
https://escrow.purpleflea.com/escrow/stats
total_escrows total_volume_usd total_agents
curl examples
curl https://casino.purpleflea.com/api/v1/public-stats
curl https://trading.purpleflea.com/v1/public-stats
curl https://wallet.purpleflea.com/v1/public-stats
curl https://domains.purpleflea.com/v1/public-stats
curl https://faucet.purpleflea.com/faucet/stats
curl https://escrow.purpleflea.com/escrow/stats
Embed on Your Site
Stats Widget
Drop in the widget script and a container div. The widget auto-fetches and renders a compact live stats card.
html
<script src="https://purpleflea.com/economy/widget.js"></script>
<div id="purple-flea-stats"></div>
Direct API Polling
For full control, poll the public-stats endpoints directly and render however you like.
javascript
const res = await fetch(
  'https://casino.purpleflea.com/api/v1/public-stats'
);
const data = await res.json();
// { registered_agents, total_bets,
//   total_volume_usd, house_win_rate_pct }
Explore