# NFT Wash Trading Detection API

> NFT Wash Trading Detection API is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Detects and analyzes wash trading activity for NFT collections or transactions using detailed forensic analysis

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/nft/wash-detect
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-0b8d1212
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eew2ILVmjlULDkdLyinHP

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-0b8d1212 -d '<json body>'
```

Example prompt: Can you run a wash trading analysis on NFT collection 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D and tell me if the recent sales volume looks artificially inflated or suspicious?

## When to prefer this

Use this endpoint when you need detailed NFT-specific wash trading forensics, including circular wallet detection and per-transaction flagging, rather than a broad wallet trust score. Ideal for due diligence on NFT collections before purchase, marketplace fraud auditing, or investigating suspicious volume spikes.

## Known failure modes

- Invalid or unrecognized contract address returns 400 error
- Contract address not found on supported chains returns 404
- Insufficient transaction history for meaningful analysis
- Rate limiting or quota exceeded returns 429
- Network or RPC timeout when fetching on-chain data

## Output

Returns a detailed wash trading analysis including a confidence score, list of flagged transactions, identified circular trading wallets, suspicious buyer-seller relationships, and an overall verdict on whether the collection or transaction exhibits wash trading patterns.

## Example request

```json
{
 "input": {
  "body": {
   "collection_address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D"
  },
  "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": {
      "collection_address": {
       "type": "string",
       "description": "NFT collection to scan for wash trading"
      }
     }
    },
    "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-0b8d1212/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)
