# x402gle Seller Trust Analysis

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

Returns wash-trading verdicts, transaction totals, and trust analysis for a given seller wallet address.

## Facts

- Endpoint: GET https://api.x402gle.com/trust/seller/:address
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402gle-seller-trust-analysis-33b43ebb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NFS2WrYKIovS0NPMja2Hn

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 x402gle-seller-trust-analysis-33b43ebb
```

Example prompt: Can you run a trust check on the seller wallet address 0x4a2b8c1d... and tell me if there's any wash-trading activity or suspicious cluster associations?

## When to prefer this

Use this endpoint when you need to assess the trustworthiness of a specific seller wallet address before executing a payment or interaction, particularly when wash-trading detection or on-chain cluster analysis is required. Prefer this over generic wallet checkers when you need x402gle's proprietary wash-trading verdict and transaction corpus analysis.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Unknown address with no corpus data may return empty or low-confidence result
- Network or chain not supported returns an error or null verdict
- Payment not included or insufficient USDC triggers 402 payment required
- Rate limiting if batch queries are attempted through single-address endpoint

## How this service works

Returns trust analysis for a seller address, including wash-trading verdicts, transaction totals, and related trust lookup actions. Supports seller, wallet, cluster, and batch trust queries.

## Output

Returns a trust analysis object for the given seller address, including wash-trading verdicts (clean/flagged), transaction totals, cluster membership data, and related trust lookup action references.

## 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/x402gle-seller-trust-analysis-33b43ebb/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)
