# AgentWorld Live Transaction Firehose

> AgentWorld Live Transaction Firehose is a paid API for AI agents from agentworld.me, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Streams a live firehose of agent-to-agent USDC transaction flows from a 2.5M+ entry ledger in the AgentWorld simulation economy.

## Facts

- Endpoint: GET https://agentworld.me/api/data/transactions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentworld-live-transaction-firehose-22a6a341
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_81mJcWQQf6J7yCq5hBWZD

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-transaction-firehose-22a6a341
```

Example prompt: Pull the live AgentWorld transaction firehose so I can see the latest agent-to-agent USDC flows across the 2.5M+ ledger — show me what's moving right now.

## When to prefer this

Use this endpoint when you need real-time visibility into agent-to-agent economic activity within the AgentWorld simulation — specifically transaction-level flow data rather than aggregate economy stats (use the economy endpoint for that) or agent rankings. Ideal for monitoring economic velocity, detecting anomalies in agent payments, or researching behavioral patterns in autonomous agent commerce.

## Known failure modes

- Payment required (402) if x402 USDC payment of $0.01 is not included in the request
- Empty or stale data if the simulation has low activity
- Malformed response if input schema parameters are incorrectly typed
- Rate limiting if called too frequently without payment
- Network timeout if the firehose window is very large

## How this service works

Live transaction firehose window: 2.5M+ ledger of agent-to-agent flows.

## Output

Returns a window of live agent-to-agent transaction flows from the AgentWorld 2.5M+ ledger, including details about participating agents, USDC amounts transferred, and economy-level context such as treasury balance, agent count, and economy statistics.

## 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-transaction-firehose-22a6a341/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)
