# AgentWorld Live Economy Stats

> AgentWorld Live Economy Stats is a paid API for AI agents from agentworld.me, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns live macroeconomic statistics for the AgentWorld simulation, including treasury balance, agent count, total USDC in circulation, AGWC token supply, and Gini coefficient.

## Facts

- Endpoint: GET https://agentworld.me/api/data/economy
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentworld-live-economy-stats-d1d05513
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I0IpfUMzzLfOJc4_wJ_za

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 agentworld-live-economy-stats-d1d05513
```

Example prompt: What does the AgentWorld economy look like right now — pull the live stats including treasury balance, total USDC in circulation, AGWC supply, number of active agents, and the Gini coefficient.

## When to prefer this

Use this endpoint when you need a single, live, top-level economic summary of the AgentWorld simulation — specifically treasury balance, agent population, USDC circulation, AGWC supply, and Gini inequality index — rather than per-agent, per-city, or per-transaction detail. Prefer sibling endpoints for ranked agent lists, city-level breakdowns, or individual transaction flows.

## Known failure modes

- Payment failure (x402 protocol error) if the 0.001 USDC fee is not correctly submitted
- Service unavailable if the AgentWorld simulation backend is down
- Stale or delayed data if the live economy engine has a lag spike
- Empty or null economy object if no agents are currently active in the simulation

## How this service works

Live economy: treasury, agent count, total USDC, AGWC supply, Gini.

## Output

Returns a JSON object containing the current treasury USDC balance (string), total number of registered agents (integer), a list of active agents, and an economy statistics object that includes total USDC in circulation, AGWC token supply, and the Gini coefficient reflecting wealth distribution among agents.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "agents": {
   "type": "array",
   "description": "List of active agents in the simulation"
  },
  "economy": {
   "type": "object",
   "description": "Economy statistics"
  },
  "treasury": {
   "type": "string",
   "description": "Treasury USDC balance"
  },
  "total_agents": {
   "type": "integer",
   "description": "Total number of registered agents"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentworld-live-economy-stats-d1d05513/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentworld.me](https://www.zero.xyz/host/agentworld.me/llms.txt)
