ToolAssay

Is this counterparty safe to pay?

Is this counterparty safe to pay? Screens the address against the OFAC sanctions list, reads its ERC-8004 reputation with coordinated feedback filtered out, and returns an explainable 0-100 trust score with a proceed / hold / block recommendation. Reports insufficient_data rather than guessing when the evidence is not there.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
233 msmedian answer time
$0.002listed price per call
$0.002price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://trust-agent.io/v1/verify/quick

CategoryCompany and compliance
Provider hosttrust-agent.io
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 233 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "chain": "base",
    "type": "contract"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "queryParams": {
          "properties": {
            "address": {
              "description": "REQUIRED. EVM address, ERC-8004 agentId, or eip155:<chainId>:<registry>/<agentId>.",
              "type": "string"
            },
            "chain": {
              "description": "OPTIONAL. Only \"base\" is served; any other value is refused rather than answered from the wrong chain. Defaults to base.",
              "type": "string"
            },
            "type": {
              "description": "OPTIONAL. agent | contract | defi_protocol | unregistered_address | unknown.",
              "type": "string"
            }
          },
          "required": [
            "address"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "components": {
              "description": "per-rule scoring breakdown; the score is reconstructable from these plus overrides"
            },
            "confidence": {
              "description": "0-1, how much evidence backs the score"
            },
            "flags": {
              "description": "array of {code, severity, title, detail}"
            },
            "overrides": {
              "description": "hard caps applied after weighting, each with from/cap/reason"
            },
            "recommendation": {
              "description": "proceed | proceed_with_caution | hold | block | insufficient_data. insufficient_data means no judgment was possible \u2014 treat it as unknown, not as risky."
            },
            "riskBand": {
              "description": "minimal | low | moderate | elevated | severe | unknown"
            },
            "trustScore": {
              "description": "0-100, higher is safer; null when no rule could be evaluated"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON