# x402gle Seller Trust Verification

> x402gle Seller Trust Verification is a paid API for AI agents from api.x402gle.com, paid per call via x402, $0.100000/call, status unknown (last checked 2026-09-14).

Verifies trust information for a seller wallet address on supported blockchain networks.

## Facts

- Endpoint: GET https://api.x402gle.com/trust/seller/0x402Feee072D655B85e08f1751AF9ddbCd249521f
- Price: $0.100000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402gle-com-5c6f70af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6ZNjWqNW-3gU4qwcfVAA0

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 api-x402gle-com-5c6f70af
```

Example prompt: Can you check the trust status of this seller wallet address 0x402Feee072D655B85e08f1751AF9ddbCd249521f before I pay them — I want to know if they're verified and trustworthy on supported chains.

## When to prefer this

Use this endpoint when you need to verify the trustworthiness of a specific seller wallet address before executing a payment or transaction, particularly in web3/crypto contexts where seller reputation matters. Prefer this over generic wallet lookup endpoints when the focus is specifically on seller trust and the address is on a supported EVM-compatible chain.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain or address format returns no trust data
- Address not found in trust registry returns empty or null trust status
- Network timeout or service unavailability returns 5xx error
- Insufficient payment (USDC) results in 402 payment required response

## How this service works

Verifies trust information for a seller address on supported chains.

## Output

Returns trust information and verification data for the specified seller wallet address, including trust status, score, or cluster data indicating whether the seller is considered trustworthy on supported blockchain networks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Seller wallet address."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402gle-com-5c6f70af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402gle.com](https://www.zero.xyz/host/api.x402gle.com/llms.txt)
