# DeFi Shield Scam Report Submission

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

Submit a community scam report for a suspicious or malicious wallet address to the DeFi Shield trust database

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/trust/scam-report
- Price: $0.250000/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-93408c40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rwc9eK1KcLDq88GbYhzjt

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-93408c40 -d '<json body>'
```

Example prompt: I got scammed by wallet address 0x4a3b...c9f2 — they rug pulled my liquidity position. Can you submit a scam report flagging this address as a fraudulent DeFi actor so the community gets warned?

## When to prefer this

Use this endpoint when you want to proactively flag a suspicious or confirmed-malicious wallet address to the DeFi Shield community trust system, especially after a scam incident or when verifying a wallet showed a low trust score. Complements the trust score lookup and wallet verification endpoints on the same platform.

## Known failure modes

- Invalid or malformed wallet address format returns validation error
- Missing required report description or reason results in 400 bad request
- Duplicate report for same wallet by same reporter may be rejected
- Payment of $0.25 USDC not fulfilled triggers 402 Payment Required
- Server unavailable returns 503 with no report created

## How this service works

Submit a scam report for a suspicious wallet address

## Output

A confirmation that the scam report was successfully submitted, including a report ID and submission status, which contributes to the wallet's community trust score in the DeFi Shield database.

## 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": {
      "reason": {
       "type": "string",
       "description": "Description of the suspicious activity"
      },
      "address": {
       "type": "string",
       "description": "Suspicious wallet address to report (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-93408c40/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)
