# Blockchain Money Map – Negative Capability Query

> Blockchain Money Map – Negative Capability Query is a paid API for AI agents from api.blockchainmoneymap.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Analyzes EVM wallet addresses or contracts for negative-capability signals including risk, fund flow, and stablecoin business structure on multiple chains.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/devagentpal/negative-capability/query
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockchain-money-map-negative-capability-query-6c82b48d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M1hH03EK08J95D7se8foC

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-negative-capability-query-6c82b48d -d '<json body>'
```

Example prompt: Run a deep negative-capability analysis on the Ethereum wallet 0xAbCd...1234 — I want the full wallet_money_map report so I can see its fund flows and any risk signals.

## When to prefer this

Choose this endpoint when you need structured on-chain risk and fund-flow analysis for a specific EVM address across Ethereum, Base, Polygon, Arbitrum, or Optimism — especially when assessing wallet behavior, contract project risk, or stablecoin creator business setup. Prefer it over generic block explorers when you need agent-consumable JSON output with analytical depth rather than raw transaction data.

## Known failure modes

- Invalid or non-EVM address format returns an error
- Unsupported chain value outside the allowed enum returns a validation error
- Address with no on-chain activity may return an empty or minimal report
- Payment failure via x402 protocol results in 402 response before analysis is run
- Notes field exceeding 1200 characters triggers a validation error

## How this service works

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

## Output

Returns a JSON report corresponding to the requested report type (wallet_money_map, contract_project_risk_snapshot, or stablecoin_creator_business_setup), containing on-chain fund flow mapping, risk signals, and structural analysis for the given EVM address on the specified chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "agentId": {
   "type": "string",
   "pattern": "\\S",
   "minLength": 1
  },
  "operation": {
   "enum": [
    "query"
   ]
  },
  "taskContext": {
   "type": "object",
   "required": [],
   "properties": {
    "network": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "resourceType": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "payloadSizeClass": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "latencyRequirementMs": {
     "type": "number",
     "maximum": 3600000,
     "minimum": 0
    }
   },
   "description": "Exact matching of every supplied metadata dimension. Missing observation dimensions do not match. latencyRequirementMs is an exact context label, not an SLA evaluation. Omit or supply an empty object for aggregate statistics.",
   "additionalProperties": true
  },
  "lookbackDays": {
   "anyOf": [
    {
     "type": "integer",
     "maximum": 3650,
     "minimum": 1
    },
    {
     "type": "null"
    }
   ]
  },
  "serviceVersion": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "minimumSampleSize": {
   "anyOf": [
    {
     "type": "integer",
     "maximum": 1000,
     "minimum": 1
    },
    {
     "type": "null"
    }
   ]
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-negative-capability-query-6c82b48d/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)
