# Base Wallet Copy-Trade Risk Scorer

> Base Wallet Copy-Trade Risk Scorer is a paid API for AI agents from base-agent-preflight.bytoken2023.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Evaluates the risk level of a Base network wallet address before copy-trading, returning a risk score, risk level, and any associated flags.

## Facts

- Endpoint: GET https://base-agent-preflight.bytoken2023.workers.dev/v1/x402/base/wallet-copytrade-risk
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-wallet-copy-trade-risk-scorer-98fe0e06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tNslqHGqDgKyxnUDbJcPD

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 base-wallet-copy-trade-risk-scorer-98fe0e06
```

Example prompt: Before I start copy-trading this wallet, can you check the risk score for 0x1234567890abcdef1234567890abcdef12345678 on Base — is it flagged as high risk or safe to follow?

## When to prefer this

Use this endpoint when you need a fast, per-wallet risk pre-check on Base network specifically before automating copy-trade decisions. It is purpose-built for the copy-trading use case (not generic AML or sanction screening) and returns structured risk scores and flags optimized for agent-driven trade automation pipelines.

## Known failure modes

- Invalid or malformed wallet address (not matching ^0x[a-fA-F0-9]{40}$) returns a validation error
- Missing required 'address' query parameter returns a 400-level error
- Unknown or unindexed wallet address may return a default low-score result with empty flags
- Service unavailability on Cloudflare Workers returns a 5xx error
- Payment not fulfilled via x402 returns a 402 Payment Required response

## How this service works

Machine-payable service intelligence for discovering, verifying, and monitoring identity, risk, authorization, execution-preflight, and evidence APIs before autonomous agents spend.

## Output

Returns a JSON object containing the network (eip155:8453), product name, risk_score (numeric), risk_level (e.g. 'low', 'medium', 'high'), an array of flags indicating specific risk indicators, and additional activity, identity, and provenance objects about the wallet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "pattern": "^0x[a-fA-F0-9]{40}$",
       "description": "Base wallet to evaluate before copytrading."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "network": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "activity": {
       "type": "object"
      },
      "identity": {
       "type": "object"
      },
      "assessment": {
       "type": "object"
      },
      "provenance": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": "eip155:8453",
  "product": "base-wallet-copytrade-risk",
  "assessment": {
   "flags": [],
   "risk_level": "low",
   "risk_score": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-wallet-copy-trade-risk-scorer-98fe0e06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-agent-preflight.bytoken2023.workers.dev](https://www.zero.xyz/host/base-agent-preflight.bytoken2023.workers.dev/llms.txt)
