# DYOE Trust Check – Domain/Business Verification

> DYOE Trust Check – Domain/Business Verification is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Verifies the trustworthiness of a website, business, or endpoint and returns a verdict (safe/caution/avoid), a trust score, and a list of red flags.

## Facts

- Endpoint: GET https://agents.dyoeway.org/verify
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dyoe-trust-check-domain-business-verification-16a348ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WQ56M8ZsxLETymhnalaXT

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability dyoe-trust-check-domain-business-verification-16a348ec
```

Example prompt: Before I pay this vendor, can you run a DYOE trust check on payments.acmecorp.io and tell me whether it's safe, what its trust score is, and any red flags I should know about?

## When to prefer this

Use this endpoint when an AI agent needs to assess whether a website, business, or API endpoint is safe to interact with or pay before taking an action — especially in agentic payment flows where verifying a counterparty is a prerequisite. Prefer this over generic search when you need a structured verdict plus a quantified trust score and a list of specific red flags rather than unstructured web results.

## Known failure modes

- Invalid or malformed target domain returns an error response
- Unknown or uncrawled domain may return low-confidence or no data
- Network timeout if target is unreachable
- Missing ?target= parameter results in a 400-level error
- Domain exists but no intelligence available yet

## How this service works

DYOE Trust Check — is this counterparty safe? Scam, fraud, phishing & rug-risk check before an agent trusts or pays any website, business, wallet, or endpoint. Returns verdict (safe/caution/avoid) + trust_score + domain age + red_flags. The trust tollbooth of the agent economy. Input: ?target=domain

## Output

Returns a JSON object containing: a verdict string (safe, caution, or avoid), a numeric trust_score indicating overall trustworthiness, and an array of red_flags listing specific concerns or suspicious signals detected about the target domain.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "target": {
       "type": "string",
       "description": "Domain or URL to trust-check"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyoe-trust-check-domain-business-verification-16a348ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
