# DeFi Shield Deployer Forensics

> DeFi Shield Deployer Forensics is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Analyzes a smart contract deployer address to surface contract deployment history, scam flags, and a reputation score

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/defi/deployer-forensics
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-937f04ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gNDaYR1BX_0NrGBTfgM97

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 defi-shield-hazel-vercel-app-937f04ff -d '<json body>'
```

Example prompt: Can you run a deployer forensics check on the wallet 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD — I want to see its full contract deployment history, any scam flags, and its reputation score before I interact with this protocol.

## When to prefer this

Use this endpoint when you need a deep forensic profile of a specific deployer wallet — including full contract history and scam flags — rather than just a quick trust score. Prefer this over the quick wallet trust score endpoint when performing due diligence on a new DeFi protocol, evaluating a token before investment, or investigating a suspicious contract interaction.

## Known failure modes

- Invalid or malformed deployer address returns a 400 error
- Unknown or brand-new address with no on-chain history may return empty history and neutral score
- Chain data unavailability may cause partial results or timeout
- Payment failure (x402) results in 402 response before any analysis is performed
- Rate limiting may occur under high request volume

## Output

Returns a forensic profile of the deployer address including: full history of contracts deployed by the wallet, any scam or rug-pull flags associated with the deployer, and a reputation/trust score indicating the deployer's overall risk level.

## Example request

```json
{
 "input": {
  "body": {
   "chain": "base",
   "deployer_address": "0x1234567890123456789012345678901234567890"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain (default: base)"
      },
      "deployer_address": {
       "type": "string",
       "description": "Deployer wallet address (0x + 40 hex chars)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-shield-hazel-vercel-app-937f04ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-shield-hazel.vercel.app](https://www.zero.xyz/host/defi-shield-hazel.vercel.app/llms.txt)
