mirrored listing x402 eip155:8453

Use immediately before an autonomous agent pays an EVM wallet

Use immediately before an autonomous agent pays an EVM wallet. Checks the destination for an exact identifier match in current official OFAC SDN and Consolidated data, then returns STOP or NO_EXACT_MATCH, freshness, and a signed-evidence upgrade path. Exact-match only; not a complete wallet-risk score, sanctions clearance, or legal advice.

Do you run evidence.regulavita.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
7
calls / 30d
7
unique payers
2026-09-17
updated

Provider

evidence.regulavita.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x9500075649a70411c81f99c4314f6cff55d12579",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "address": "0x0000000000000000000000000000000000000000",
          "network": "eip155:8453"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "checked_at": "2026-08-04T00:00:00Z",
          "checked_lists": [
            "SDN",
            "CONSOLIDATED"
          ],
          "decision": "NO_EXACT_OFAC_MATCH_FOUND",
          "match_count": 0,
          "premium_evidence_path": "/v1/ofac/exact-identifier-evidence",
          "request_id": "ofac_preflight_example",
          "source_age_seconds": 60
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "additionalProperties": false,
              "properties": {
                "address": {
                  "description": "Exact EVM destination wallet address.",
                  "pattern": "^0x[0-9A-Fa-f]{40}$",
                  "type": "string"
                },
                "network": {
                  "default": "eip155:8453",
                  "description": "CAIP-2 EVM network identifier.",
                  "pattern": "^eip155:[0-9]+$",
                  "type": "string"
                }
              },
              "required": [
                "address"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "checked_at": {
                  "format": "date-time",
                  "type": "string"
                },
                "decision": {
                  "enum": [
                    "STOP_EXACT_OFAC_MATCH",
                    "NO_EXACT_OFAC_MATCH_FOUND"
                  ]
                },
                "match_count": {
                  "type": "integer"
                },
                "request_id": {
                  "type": "string"
                },
                "source_age_seconds": {
                  "type": "integer"
                }
              },
              "required": [
                "request_id",
                "decision",
                "match_count",
                "checked_at"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://evidence.regulavita.com/v1/ofac/payment-preflight"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://evidence.regulavita.com/v1/ofac/payment-preflight");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://evidence.regulavita.com/v1/ofac/payment-preflight")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/2191.json, and this resource appears in /discovery/resources and /discovery/search.