{
  "x402Version": 2,
  "resources": [
    {
      "x402Version": 2,
      "resource": {
        "url": "https://api.verdixapi.com/risk/address",
        "description": "Screen an EVM address on Base before sending it funds. POST the address and get back a safe/caution/danger verdict plus reasons, based on OFAC sanctions lists, known scam/blacklist databases, and on-chain age and activity. Built for autonomous agents to vet a counterparty or payout address before executing a transfer. Three tiers - quick, standard, deep - trade thoroughness for price.",
        "mimeType": "application/json",
        "serviceName": "Verdix Address Risk",
        "tags": [
          "risk-scoring",
          "compliance",
          "wallet-screening",
          "ofac",
          "base"
        ]
      },
      "accepts": [
        {
          "scheme": "exact",
          "network": "eip155:8453",
          "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
          "amount": "20000",
          "payTo": "0x2e5a2170bd812997ae2e5b10921FB55fd0148ccF",
          "maxTimeoutSeconds": 300,
          "extra": {
            "name": "USD Coin",
            "version": "2",
            "tier": "quick"
          }
        },
        {
          "scheme": "exact",
          "network": "eip155:8453",
          "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
          "amount": "100000",
          "payTo": "0x2e5a2170bd812997ae2e5b10921FB55fd0148ccF",
          "maxTimeoutSeconds": 300,
          "extra": {
            "name": "USD Coin",
            "version": "2",
            "tier": "standard"
          }
        },
        {
          "scheme": "exact",
          "network": "eip155:8453",
          "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
          "amount": "500000",
          "payTo": "0x2e5a2170bd812997ae2e5b10921FB55fd0148ccF",
          "maxTimeoutSeconds": 300,
          "extra": {
            "name": "USD Coin",
            "version": "2",
            "tier": "deep"
          }
        }
      ],
      "extensions": {
        "bazaar": {
          "info": {
            "input": {
              "type": "http",
              "bodyType": "json",
              "body": {
                "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
                "chain": "base",
                "tier": "standard"
              },
              "method": "POST"
            },
            "output": {
              "type": "json",
              "example": {
                "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
                "chain": "base",
                "tier": "standard",
                "price_usd": 0.1,
                "risk_score": 5,
                "verdict": "safe",
                "reasons": [],
                "checked": [
                  "ofac",
                  "scam_lists",
                  "onchain_age"
                ],
                "as_of": "2026-09-24T10:00:00+00:00"
              }
            }
          },
          "schema": {
            "$schema": "https://json-schema.org/draft/2020-12/schema",
            "type": "object",
            "properties": {
              "input": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string",
                    "const": "http"
                  },
                  "method": {
                    "type": "string",
                    "enum": [
                      "POST",
                      "PUT",
                      "PATCH"
                    ]
                  },
                  "bodyType": {
                    "type": "string",
                    "enum": [
                      "json",
                      "form-data",
                      "text"
                    ]
                  },
                  "body": {
                    "properties": {
                      "address": {
                        "type": "string",
                        "pattern": "^0x[0-9a-fA-F]{40}$",
                        "description": "EVM wallet address to screen, e.g. before sending it funds"
                      },
                      "chain": {
                        "type": "string",
                        "enum": [
                          "base"
                        ],
                        "default": "base",
                        "description": "Chain the address lives on - currently only Base is supported"
                      },
                      "tier": {
                        "type": "string",
                        "enum": [
                          "quick",
                          "standard",
                          "deep"
                        ],
                        "default": "standard",
                        "description": "Analysis depth/price tier - pay the matching price to select it"
                      }
                    },
                    "required": [
                      "address"
                    ]
                  }
                },
                "required": [
                  "type",
                  "method",
                  "bodyType",
                  "body"
                ],
                "additionalProperties": false
              },
              "output": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string"
                  },
                  "example": {
                    "type": "object",
                    "properties": {
                      "address": {
                        "type": "string"
                      },
                      "chain": {
                        "type": "string"
                      },
                      "tier": {
                        "type": "string",
                        "enum": [
                          "quick",
                          "standard",
                          "deep"
                        ]
                      },
                      "price_usd": {
                        "type": "number"
                      },
                      "risk_score": {
                        "type": "integer",
                        "minimum": 0,
                        "maximum": 100
                      },
                      "verdict": {
                        "type": "string",
                        "enum": [
                          "safe",
                          "caution",
                          "danger"
                        ]
                      },
                      "reasons": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "checked": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "as_of": {
                        "type": "string",
                        "format": "date-time"
                      }
                    }
                  }
                },
                "required": [
                  "type"
                ]
              }
            },
            "required": [
              "input"
            ]
          }
        }
      },
      "url": "https://api.verdixapi.com/risk/address",
      "description": "Screen an EVM address on Base before sending it funds. POST the address and get back a safe/caution/danger verdict plus reasons, based on OFAC sanctions lists, known scam/blacklist databases, and on-chain age and activity. Built for autonomous agents to vet a counterparty or payout address before executing a transfer. Three tiers - quick, standard, deep - trade thoroughness for price.",
      "tags": [
        "risk-scoring",
        "compliance",
        "wallet-screening",
        "ofac",
        "base"
      ],
      "method": "POST",
      "type": "http"
    }
  ]
}
