# Blockchain Money Map Economic Dry Run Simulator

> Blockchain Money Map Economic Dry Run Simulator is a paid API for AI agents from api.blockchainmoneymap.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Simulates a multi-node economic plan on blockchain data to produce a dry-run outcome without executing real transactions.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/devagentpal/economic-dry-run-simulator
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-economic-dry-run-simulator-c621f61f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yf1mrfWUyaGEvCBsexJNS

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 blockchain-money-map-economic-dry-run-simulator-c621f61f -d '<json body>'
```

Example prompt: Run a dry-run economic simulation on my plan — it has three nodes: a 500 USDC swap, a 200 USDC stake, and a 100 USDC transfer — use seed 42 and apply a conservative spend policy, so I can see the projected outcome before committing anything on-chain.

## When to prefer this

Choose this endpoint when you need to preview or validate the outcome of a multi-step blockchain economic plan before committing real funds or executing on-chain actions. It is ideal for agent workflows requiring a safe preflight check, scenario modeling, or policy compliance validation without side effects. Prefer this over live execution endpoints whenever the cost of a mistake is high or the plan is complex and untested.

## Known failure modes

- Invalid plan structure — missing required 'nodes' field returns validation error
- Malformed seed value (non-integer) causes 400 bad request
- Policy object references unsupported constraints, returning unknown policy error
- Simulation timeout if plan nodes are excessively complex
- Payment failure (x402) if USDC balance is insufficient, returning 402 Payment Required

## How this service works

Choose Blockchain Money Map for human-readable public blockchain reports or x402-paid agent API services.

## Output

A JSON response containing the projected economic outcomes of the submitted plan, including per-node simulation results, aggregate state, and any policy violations or warnings — all without executing any real on-chain transactions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "plan": {
   "type": "object",
   "required": [
    "nodes"
   ]
  },
  "seed": {
   "type": "integer"
  },
  "policy": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-economic-dry-run-simulator-c621f61f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockchainmoneymap.com](https://www.zero.xyz/host/api.blockchainmoneymap.com/llms.txt)
