ToolAssay

Screen up to 10 addresses in one call

Screen up to 10 addresses in one call: OFAC sanctions check, trust score, risk band and recommendation for each. For vetting a counterparty set before a run of payments, maintaining an allowlist, or auditing wallets you already pay. Free alternative: GET /v1/verify. Or 3 free calls of this endpoint per wallet per 24h: https://trust-agent.io/v1/trial.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
259 msmedian answer time
$0.010003listed price per call
$0.010003price 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

POST https://trust-agent.io/v1/verify/batch

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

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.010003 259 ms

Example input (from the provider)

{
  "body": {
    "addresses": [
      "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "0x4200000000000000000000000000000000000006"
    ],
    "chain": "base",
    "type": "contract"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "addresses": {
              "description": "REQUIRED. string[] of 1-10 EVM addresses.",
              "items": {
                "type": "string"
              },
              "maxItems": 10,
              "minItems": 1,
              "type": "array"
            },
            "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. Subject type hint applied to all.",
              "type": "string"
            }
          },
          "required": [
            "addresses"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "failed": {
              "description": "count that errored"
            },
            "results": {
              "description": "array of {address, trustScore, riskBand, recommendation, confidence, subjectType, topFlags}. trustScore is null where no rule could be evaluated."
            },
            "safest": {
              "description": "address with the highest score, or null if none of the batch produced a score. Unscorable addresses are excluded from the ranking rather than sorted as zero."
            },
            "succeeded": {
              "description": "count scored without error"
            },
            "unscorable": {
              "description": "count scored without error but with no evaluable evidence"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON