# Amori x402 Deployer Scan

> Amori x402 Deployer Scan is a paid API for AI agents from api.amori402.xyz, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Scans a deployer wallet address across EVM or Solana chains to assess its on-chain reputation and security risk profile.

## Facts

- Endpoint: POST https://api.amori402.xyz/api/v1/security/deployer-scan
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amori-x402-deployer-scan-2ae97546
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ht0mXe9xJsvC4GYrB-ZN5

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 amori-x402-deployer-scan-2ae97546 -d '<json body>'
```

Example prompt: Can you scan the deployer wallet 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD on Ethereum and tell me if it has a suspicious or malicious reputation?

## When to prefer this

Choose this endpoint when you need to assess whether a specific wallet that has deployed tokens or contracts is trustworthy, particularly before investing in a new token or interacting with a new protocol. It is ideal for pre-trade due diligence on EVM chains (Ethereum, BSC, Polygon, Base, Arbitrum) and Solana, especially in DeFi and memecoin contexts where rug pulls and phishing are common.

## Known failure modes

- Invalid wallet address format returns an error (EVM address must be 0x + 40 hex chars; Solana must be valid base58 32-44 chars)
- Unsupported chain_id returns an error — only specified EVM chains and Solana are supported
- Unknown or brand-new wallet with no on-chain history may return sparse or inconclusive results
- Network or payment failure via x402 protocol may result in a 402 or timeout response
- Address with no deployments may not have a deployer reputation profile

## How this service works

On-chain intelligence API for AI Agents. Token security, wallet reputation, phishing detection, trending pairs, Pump.fun data, and wallet balances across EVM and Solana. Powered by x402 protocol.

## Output

Returns a JSON object with a success flag and a data object containing the deployer wallet's on-chain reputation analysis, including security risk signals, threat indicators, and historical deployment behavior relevant to assessing trustworthiness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address",
  "chain_id"
 ],
 "properties": {
  "address": {
   "type": "string",
   "description": "Wallet address to scan. EVM: 0x + 40 hex chars. Solana: base58 (32-44 chars)."
  },
  "chain_id": {
   "enum": [
    "ethereum",
    "eth",
    "bsc",
    "bnb",
    "polygon",
    "matic",
    "base",
    "arbitrum",
    "arb",
    "solana",
    "sol",
    "1",
    "56",
    "137",
    "8453",
    "42161",
    "solana"
   ],
   "type": "string",
   "description": "Chain name or ID. Names: ethereum, eth, bsc, bnb, polygon, matic, base, arbitrum, arb, solana, sol. IDs: 1, 56, 137, 8453, 42161, solana."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amori-x402-deployer-scan-2ae97546/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.amori402.xyz](https://www.zero.xyz/host/api.amori402.xyz/llms.txt)
