# x402gle Trust Cluster Lookup

> x402gle Trust Cluster Lookup 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).

Looks up a wallet address in the x402gle trust/wash analysis corpus and returns its cluster membership, risk aggregates, and related trust endpoints.

## Facts

- Endpoint: GET https://api.x402gle.com/trust/cluster/: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-trust-cluster-lookup-84fb3c1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LWaHkTbtG6tL1-rhnNALo

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-trust-cluster-lookup-84fb3c1d
```

Example prompt: Can you look up the trust cluster and risk aggregates for wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on x402gle and tell me what cluster it belongs to and if there are any wash trading flags?

## When to prefer this

Use this endpoint when you need to understand the broader cluster context of a wallet address — not just its individual trust score, but its connected-component membership within the x402gle wash-trading graph. Prefer this over simple trust-score endpoints when you need risk aggregates across a cluster of related addresses.

## Known failure modes

- Address not found: returns a structured empty result rather than an error
- Invalid address format: may return a 400 error or empty result
- Network/upstream timeout: 5xx error
- Payment not included or insufficient: 402 Payment Required

## How this service works

Looks up a wallet address in the x402gle trust/wash analysis corpus and returns cluster membership, risk aggregates, and related trust endpoints. Handles missing addresses cleanly with a structured empty result.

## Output

Returns cluster membership (connected component containing the queried address), risk aggregates, and related trust endpoint URLs. Returns a structured empty result if the address is not found in the corpus.

## 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": "Seed address. The cluster is the connected component containing this 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-trust-cluster-lookup-84fb3c1d/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)
