x402 List

x402 Protocol Service Directory

SYNTHORA Address Risk Screen

Verification imported

imported from the x402 Bazaar, not submitted by the operator · own this service? claim it

Screens an EVM wallet address by proxying the free public GoPlus address_security API, returning a blacklist flag with an Ed25519 signed receipt. Free trial of 3 calls per wallet via an X-WALLET header. In testing, most detail fields came back empty.

Pay from $0.001 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

UPTIME 24H 81.3% 7D 81.3% 30D 81.3%
BASE URL https://address-risk.hergertsynthora.com ENDPOINTS 1 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-21 MONITORED SINCE 2026-07-21

ASSESSMENT

updated 5h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 81.3%
uptime 24h
-
uptime 7d
-
uptime 30d
-
uptime 90d
-
response p95
-
avg response
-
total checks
1
compliance unknown

x402 compliance not evaluated yet.

jump to compliance checklist

price $0.001 (p15 in Verification)
price (min)
$0.001
category percentile (min)
p15 in Verification
endpoints / prices
1 / 1
model
flat
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

traction ---

This service shares a payout address and its probe has been failing, so its on-chain volume is suppressed until it responds again. Settlements on a shared address while a member is down are not attributed to it.

WHAT IT DOES

ai-derived

Provides AML/malicious-address screening to check if a wallet is a known scammer, sanctioned, mixer, or honeypot deployer using GoPlus intelligence and Ed25519-signed verdicts.

category
address-risk-screening
in
body
auth
api key
amlrisk-screeningwallet-analysissanctions-checkcrypto-security

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /service AML/malicious-address screen: is this wallet a known scammer, sanctioned, mixer, or honeypot deployer? GoPlus intelligence, Ed25519-signed verdict. Pre-pay safety for agents. Free source. $0.02 USDC via x402 on Base. SYNTHORA. First 3 calls FREE per wallet — send header X-WALLET: 0x<addr>. No charge on upstream failure. $0.001 Base USDC
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /service returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i -X POST 'https://address-risk.hergertsynthora.com/service'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x10800a5a5B9d72251566EC651E862A8b4B427dE0",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "mimeType": "application/json",
        "resource": "https://address-risk.hergertsynthora.com/service",
        "description": "AML/malicious-address screen: is this wallet a known scammer, sanctioned, mixer, or honeypot deployer? GoPlus intelligence, Ed25519-signed verdict. Pre-pay safety for agents. Free source. $0.02 USDC via x402 on Base. SYNTHORA. First 3 calls FREE per wallet — send header X-WALLET: 0x<addr>. No charge on upstream failure.",
        "maxAmountRequired": "1000",
        "maxTimeoutSeconds": 300
      }
    ],
    "freeTier": {
      "note": "send header X-WALLET: 0x<your Base address> for a free trial",
      "header": "X-WALLET",
      "callsPerWallet": 3
    },
    "resource": {
      "url": "https://address-risk.hergertsynthora.com/service",
      "mimeType": "application/json",
      "description": "AML/malicious-address screen: is this wallet a known scammer, sanctioned, mixer, or honeypot deployer? GoPlus intelligence, Ed25519-signed verdict. Pre-pay safety for agents. Free source. $0.02 USDC via x402 on Base. SYNTHORA. First 3 calls FREE per wallet — send header X-WALLET: 0x<addr>. No charge on upstream failure."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "address": "0x0000000000000000000000000000000000000000",
              "chain_id": "8453"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "ok": true,
              "niche": "address-risk",
              "result": {
                "address": null,
                "chain_id": null,
                "honeypot": null,
                "phishing": null,
                "risk_level": null,
                "is_contract": null,
                "is_malicious": null,
                "blacklist_doubt": "0",
                "risk_alert_count": null,
                "malicious_behavior": null
              },
              "provenance": {
                "url": "https://api.gopluslabs.io/api/v1/address_security",
                "source": "SYNTHORA Address Risk Screen"
              }
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "address",
                    "chain_id"
                  ],
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "address"
                    },
                    "chain_id": {
                      "type": "string",
                      "description": "chain_id"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST",
                    "PUT",
                    "PATCH"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "ok": {
                    "type": "boolean"
                  },
                  "type": "object",
                  "niche": {
                    "type": "string"
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

UPTIME

07-21 · uptime 81.3% · 1507ms avg07-21 · uptime 81.3% · 1507ms avg07-2107-21
RESPONSE TIME
07-21 · 1507ms avg07-21 · 1507ms avg07-2107-21
30d UPTIME 81.3%
UPTIME 30D 81.3%
AVG RESP 1546ms
TOTAL CHECKS 18

RECENT CHECKS

TIME STATUS RESP
○ DOWN 10001ms
● OK 2059ms
● OK 486ms
● OK 1164ms
● OK 693ms
○ DOWN 10002ms
● OK 717ms
● OK 967ms
● SLOW 2336ms
● OK 1647ms
● OK 2113ms
● SLOW 2361ms
● OK 742ms
● SLOW 3697ms
● OK 1501ms
● OK 1167ms
○ DOWN 10000ms
○ DOWN 10001ms

OVER TIME

All charts share the 30d window selected here. Every series is also served as JSON at /api/v1/services/synthora-address-risk-screen/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

PRICE (captured 402, USD)
building price history ($0.001)
SUB-SCORES (uptime + x402 compliance)
building assessment history
VOLUME (on-chain settlement, USD)
This service shares a payout address and its probe has been failing, so its on-chain volume is suppressed until it responds again. Settlements on a shared address while a member is down are not attributed to it.
DISTINCT BUYERS
This service shares a payout address and its probe has been failing, so its distinct on-chain buyers are suppressed until it responds again. Settlements on a shared address while a member is down are not attributed to it.

COMPLIANCE

not evaluated
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS

EMBED THIS BADGE

Show that SYNTHORA Address Risk Screen is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

SYNTHORA Address Risk Screen listed on x402-list
status
SYNTHORA Address Risk Screen uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/synthora-address-risk-screen?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/synthora-address-risk-screen.svg" alt="SYNTHORA Address Risk Screen listed on x402-list" height="28">
</a>
// Markdown
[![SYNTHORA Address Risk Screen on x402-list](https://x402-list.com/badge/synthora-address-risk-screen.svg)](https://x402-list.com/services/synthora-address-risk-screen?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/synthora-address-risk-screen?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/synthora-address-risk-screen.svg?data=uptime" alt="SYNTHORA Address Risk Screen uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]