# DeFi Shield Copytrading Signal Extractor

> DeFi Shield Copytrading Signal Extractor 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-13).

Extracts copytrading signals from a wallet's recent on-chain trading patterns to identify strategies worth following

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/wallet/copytrading
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-fdc68609
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LRyfALAFyecVetllKezah

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

Example prompt: Pull the copytrading signals from wallet 0x4a3b...c7f2's recent trading activity — I want to see what patterns and strategies are worth copying.

## When to prefer this

Use this endpoint when you need to extract actionable copytrading signals from a specific wallet's recent trading behavior — particularly when evaluating whether a wallet's strategy is worth mimicking. Prefer this over general wallet risk endpoints when your goal is signal extraction for copy trading rather than trust/safety assessment.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Wallet with no recent trading history returns empty signals
- Unsupported chain or wallet type returns error
- Insufficient transaction history to extract meaningful signals
- Rate limiting or payment failure returns 402 or 429
- Network/RPC issues fetching on-chain data cause timeout

## Output

Returns extracted copytrading signals derived from the wallet's recent on-chain trading patterns, including trade direction indicators, asset preferences, timing patterns, and strategy classification that can inform copy trading decisions.

## Example request

```json
{
 "input": {
  "body": {
   "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": {
      "address": {
       "type": "string",
       "description": "Wallet address to extract trading signals from (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-fdc68609/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)
