# DYOE Verified Organization Credential

> DYOE Verified Organization Credential is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Runs a trust check on a business domain and issues a DYOE-signed verifiable credential containing a verdict, trust score, and domain age

## Facts

- Endpoint: GET https://agents.dyoeway.org/credential/org
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dyoe-verified-organization-credential-e5625c16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p-3n1W0ICDviDNTOSyhTK

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-verified-organization-credential-e5625c16
```

Example prompt: Can you run a DYOE trust check on acmecorp.com and get me a signed organization credential with the verdict and trust score?

## When to prefer this

Use this endpoint when an AI agent needs a cryptographically signed, verifiable credential attesting to the trustworthiness of a business domain — especially when the downstream system requires a machine-readable, DYOE-authority-backed credential rather than a raw audit report. Prefer this over generic WHOIS or domain-age lookups when a signed, portable credential object is needed for downstream trust decisions.

## Known failure modes

- Invalid or malformed domain input — returns error indicating bad domain format
- Domain not resolvable or non-existent — credential may return low trust score or unverified verdict
- Payment not completed (x402) — request blocked until 0.1 USDC payment is made
- Rate limiting or service unavailability — returns 503 or timeout
- Domain too new or lacking history — trust score may be very low with minimal data

## How this service works

Verified Organization credential — runs a trust check on a business domain and issues a DYOE-signed, verifiable credential {verdict, trust_score, domain_age}. Riding the same authority rail as Verified Human / Agent / Action. Input: ?domain=

## Output

A DYOE-signed verifiable credential object containing: a trust verdict (e.g. trusted/suspicious/unverified), a numeric trust score, and the domain age — all cryptographically signed under the DYOE authority rail shared with Verified Human/Agent/Action credentials.

## 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": {
      "domain": {
       "type": "string",
       "description": "Business domain to issue a credential for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyoe-verified-organization-credential-e5625c16/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)
