# Blockchain Money Map Reputation Reincarnation Detector

> Blockchain Money Map Reputation Reincarnation Detector 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 or contract addresses to detect reputation reincarnation patterns — identifying when a bad actor has migrated funds or activity to a new address to escape prior reputation damage.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/devagentpal/reputation-reincarnation-detector
- 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-reputation-reincarnation-detector-76b03011
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KHdRNdCkODqalMaPLWdmv

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-reputation-reincarnation-detector-76b03011 -d '<json body>'
```

Example prompt: Run a deep reputation reincarnation check on Ethereum for wallet address 0xAbC123... — I want to know if this address is a known bad actor who relaunched under a new identity, using the wallet_money_map report type.

## When to prefer this

Choose this endpoint when you specifically need to detect whether a blockchain address or contract is a reputation reincarnation — i.e., a relaunch or migration by an actor attempting to escape prior bad reputation. It is especially useful for DeFi due diligence, fraud investigation, and stablecoin risk assessment across Ethereum, Base, Polygon, Arbitrum, and Optimism. Prefer this over generic wallet scoring services when the core question is identity migration and reputation laundering rather than simple transaction risk scoring.

## Known failure modes

- Invalid or malformed EVM address returns an error
- Unsupported chain value returns validation error
- Insufficient on-chain data for very new addresses may produce inconclusive results
- Address with no transaction history may return empty or minimal analysis
- Payment failure via x402 protocol returns 402 status before analysis begins
- Exceeding notes maxLength of 1200 characters returns schema validation error

## How this service works

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

## Output

A JSON report containing reputation reincarnation risk signals for the given EVM address, including identified address clusters linked to prior reputation events, fund migration patterns, risk flags, and a structured analysis aligned to the chosen report type (wallet money map, contract project risk snapshot, or stablecoin creator business setup).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "policy": {
   "type": "object",
   "required": [
    "weights"
   ],
   "properties": {
    "weights": {
     "type": "object",
     "required": [],
     "properties": {
      "code_hash": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      },
      "owner_key": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      },
      "wallet_funding": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      },
      "domain_certificate": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      },
      "schema_fingerprint": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      },
      "behavioral_fingerprint": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      },
      "infrastructure_fingerprint": {
       "anyOf": [
        {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        {
         "type": "null"
        }
       ]
      }
     },
     "additionalProperties": true
    },
    "maximumReferences": {
     "anyOf": [
      {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      {
       "type": "null"
      }
     ]
    },
    "minimumStrongSignals": {
     "anyOf": [
      {
       "type": "integer",
       "maximum": 20,
       "minimum": 0
      },
      {
       "type": "null"
      }
     ]
    },
    "minimumWeightedScore": {
     "anyOf": [
      {
       "type": "integer",
       "maximum": 100,
       "minimum": 0
      },
      {
       "type": "null"
      }
     ]
    }
   },
   "additionalProperties": true
  },
  "candidate": {
   "type": "object",
   "required": [
    "agentId",
    "signals"
   ],
   "properties": {
    "agentId": {
     "type": "string",
     "pattern": "\\S",
     "minLength": 1
    },
    "signals": {
   
… (truncated)
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockchain-money-map-reputation-reincarnation-detector-76b03011/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)
