# Blockchain Money Map Agent-to-Agent Team Role Map

> Blockchain Money Map Agent-to-Agent Team Role Map 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 a multi-agent team task and candidate agents to produce an optimal role assignment mapping for agent orchestration.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/x402-agent-to-agent-team-role-map
- 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-agent-to-agent-team-role-map-890ca179
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Ujke8zEBQRw4zNEcIkH3

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-agent-to-agent-team-role-map-890ca179 -d '<json body>'
```

Example prompt: I have a data analysis pipeline task and 6 candidate agents with different specializations — can you analyze the team and map each agent to the best role, given that I need a data fetcher, a summarizer, and a report writer?

## When to prefer this

Choose this endpoint when you need to programmatically assign roles across a set of heterogeneous AI agents for a specific team task — especially in multi-agent orchestration pipelines where you want an automated, constraint-aware allocation rather than manual assignment. Particularly useful when agents have overlapping capabilities and clear role separation is needed.

## Known failure modes

- Missing required fields (teamTask or candidateAgents) returns a validation error
- Too many candidate agents (>8) or roles (>10) triggers a schema violation
- Invalid mode value (must be 'analyze') returns an error
- Poorly specified task or vague agent descriptions may produce low-confidence or suboptimal mappings
- Payment failure via x402 protocol results in 402 response before processing

## How this service works

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

## Output

A JSON object containing an agent-to-role mapping, indicating which candidate agent should fill each required role for the given team task, along with any supporting rationale or constraints applied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "analyze"
   ]
  },
  "facts": {
   "type": "object",
   "required": [
    "teamTask",
    "candidateAgents"
   ],
   "properties": {
    "teamTask": {
     "type": "string",
     "maxLength": 500
    },
    "constraints": {
     "type": "object",
     "maxProperties": 50,
     "additionalProperties": true
    },
    "handoffNotes": {
     "type": "string",
     "maxLength": 500
    },
    "requiredRoles": {
     "type": "array",
     "maxItems": 10
    },
    "candidateAgents": {
     "type": "array",
     "maxItems": 8
    }
   },
   "additionalProperties": false
  },
  "policy": {
   "type": "object",
   "additionalProperties": true
  },
  "reference_facts": {
   "type": "object",
   "required": [
    "teamTask",
    "candidateAgents"
   ],
   "properties": {
    "teamTask": {
     "type": "string",
     "maxLength": 500
    },
    "constraints": {
     "type": "object",
     "maxProperties": 50,
     "additionalProperties": true
    },
    "handoffNotes": {
     "type": "string",
     "maxLength": 500
    },
    "requiredRoles": {
     "type": "array",
     "maxItems": 10
    },
    "candidateAgents": {
     "type": "array",
     "maxItems": 8
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-agent-to-agent-team-role-map-890ca179/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)
