# 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.100000/call, status unknown (last checked 2026-09-15).

Returns trust cluster data (connected component) for a given blockchain wallet address.

## Facts

- Endpoint: GET https://api.x402gle.com/trust/cluster/0x402Feee072D655B85e08f1751AF9ddbCd249521f
- Price: $0.100000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402gle-com-759356b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xEvZ9P3WKeyne6it76PK7

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-759356b0
```

Example prompt: What's the trust cluster for wallet address 0x402Feee072D655B85e08f1751AF9ddbCd249521f? I want to see all the connected addresses in its trust network.

## When to prefer this

Use this endpoint when you need to understand the trust cluster or connected component a wallet address belongs to — particularly useful for fraud detection, due diligence on counterparties, or understanding which addresses are trust-related to a given wallet. Prefer over single trust score endpoints when you need the full cluster/network view rather than just a scalar score.

## Known failure modes

- Invalid or malformed wallet address returns error response
- Unknown address not in trust graph may return empty cluster
- Network or chain not supported returns error
- Payment failure (insufficient USDC) blocks the request
- Rate limiting if too many requests are made

## How this service works

Returns trust cluster data for a given wallet or address.

## Output

Returns trust cluster data representing the connected component of the trust graph that contains the given wallet address — essentially all addresses clustered together with the seed address based on trust relationships, along with associated trust metadata.

## 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/api-x402gle-com-759356b0/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)
