Which live agents can do X — and which of them are safe?
Which live agents can do X — and which of them are safe? Searches the skills, domains and names ERC-8004 agents declare, across the registrations this service sweeps continuously, and returns only the ones answering. Each row carries the endpoint to call, the wallet a payment reaches, and that wallet's risk band and sanctions verdict, so choosing between candidates is one call rather than a screening per row. Free alternative: GET /v1/search. Trial: 3 free calls/wallet/24h — https://trust-agent.io/v1/trial.
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/search/agents
| Category | Company and compliance |
|---|---|
| Provider host | trust-agent.io |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005001 | 642 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"acceptsX402": "true",
"skill": "natural-language-processing-info"
},
"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": {
"acceptsX402": {
"description": "OPTIONAL. `true` restricts to agents whose registration declares x402 support.",
"type": "string"
},
"chain": {
"description": "OPTIONAL. Only \"base\" is served.",
"type": "string"
},
"cursor": {
"description": "OPTIONAL. Offset from a previous response\u2019s nextCursor.",
"type": "string"
},
"domain": {
"description": "OPTIONAL. Declared domain, e.g. compliance.",
"type": "string"
},
"q": {
"description": "OPTIONAL. Case-insensitive substring over the agent name; descriptions are not indexed.",
"type": "string"
},
"skill": {
"description": "One of `skill`, `domain` or `q` is REQUIRED. Declared skill, e.g. natural-language-processing-info. GET /v1/search lists the live vocabulary.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"agents": {
"description": "agentId, identifier, name, endpoint, skills, domains, acceptsX402, payoutWallet, verdict (riskBand, blocklisted, confidence per payout wallet), checkedAt"
},
"matches": {
"description": "total agents matching, across all pages"
},
"nextCursor": {
"description": "offset for the next page, or null when exhausted"
},
"note": {
"description": "A declared skill is a claim, not a capability \u2014 each row already carries the verdict, so start with the rows that read safe and escalate the rest to GET /v1/verify/quick for the score and flags"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}