---
name: api.x402gle.com
description: api.x402gle.com provides on-chain trust and wash-trading analysis for blockchain wallet addresses. It returns structured risk signals — including wash-trade scores, ghost-wallet flags, funding provenance, and cluster membership — for individual wallets, sellers, and coordinated address clusters.
host: api.x402gle.com
---

# api.x402gle.com

This host specializes in blockchain counterparty risk assessment, serving agents that need to screen wallets before trades, payments, listings, or reward payouts. It covers three distinct trust lenses: general wallet reputation, seller-specific transaction analysis, and cluster-level wash-trading network detection. The host does not offer batch processing through these skills; a separate POST /trust/batch endpoint exists for multi-address lookups but is not exposed here.

## When to use this host

Use this host when an agent needs structured on-chain trust signals for a single blockchain wallet, seller, or cluster address — particularly for wash-trading detection, ghost-wallet screening, or funding-chain analysis before a transaction or listing interaction. For Solana-specific wash-trading analysis, fetch-wallet-trust-score provides chain-aware signals. Do not use this host for batch address lookups (use POST /trust/batch directly), real-time streaming monitoring, or off-chain identity verification. This host does not provide token price data, trade execution, or portfolio analytics — route those needs to a separate market-data or trading host.

## Capabilities

### Wallet Trust Scoring

Assesses the reputation and wash-trading risk of an individual wallet address, returning a verdict with signals such as ghost status, funding chain, circular-flow detection, and amount uniformity.

- **`fetch-wallet-trust-status`** — Returns a trust case file for a given wallet address, including wash-trading verdict, ghost status, funding source, cluster membership, and on-chain activity metadata.
- **`fetch-wallet-trust-score`** — Returns a trust and reputation case file for a given wallet address, including wash trading score, ghost status, funding source, cluster membership, and activity metadata.

### Seller Trust Analysis

Evaluates a seller address specifically, providing wash-trade score, transaction volume breakdown, and sender analysis relevant to listing or transaction interactions.

- **`check-seller-trust`** — Returns a trust case file for a seller address, including wash-trade score, transaction volume breakdown, sender analysis, and identification metadata.

### Cluster Membership Detection

Determines whether a wallet belongs to a known wash-trading cluster and returns aggregate cluster-level metrics including size, member list, and flagged/ghost counts.

- **`fetch-trust-cluster`** — Returns the trust cluster membership, size, seeds, members, and aggregate wash-score metrics for a given blockchain address.

## Workflows

### Full Counterparty Risk Assessment

*Use when an agent needs to thoroughly vet a wallet address before executing a trade or accepting a payment, combining individual wallet signals with cluster-level network context.*

1. **`fetch-wallet-trust-score`** — Retrieve the wallet's wash-trade verdict, ghost flag, funding provenance, and activity signals.
2. **`fetch-trust-cluster`** — Check whether the wallet belongs to a known wash-trading cluster and retrieve aggregate risk scores for that cluster.

### Seller Vetting with Network Context

*Use when an agent needs to evaluate a seller address for both individual transaction integrity and potential coordination with other flagged wallets.*

1. **`check-seller-trust`** — Retrieve seller-specific wash-trade score, transaction volume breakdown, and sender analysis.
2. **`fetch-trust-cluster`** — Determine whether the seller address is part of a known wash-trading cluster and assess aggregate cluster risk.

## Skill reference

### `fetch-wallet-trust-status`

**Wallet Trust Check** — Returns a trust case file for a given wallet address, including wash-trading verdict, ghost status, funding source, cluster membership, and on-chain activity metadata.

*Use when:* Use when an agent needs to assess the trustworthiness or risk profile of a wallet address — e.g., before executing a trade, accepting a payment, or evaluating a counterparty — and requires structured signals like wash score, ghost flag, and funding provenance.

*Not for:* Do not use for seller-specific trust checks (use /trust/seller/{address}) or cluster-level analysis (use /trust/cluster/{address}). Not suitable for batch lookups of multiple addresses — use POST /trust/batch instead.

**Inputs:**

- `address` (string, required) — The wallet address to look up, embedded in the URL path. Supports EVM-style hex addresses.

**Returns:** Returns a trust case file with found=false, ghost.is_ghost=false, null wash_score/wash_label, null funding/cluster/activity fields, and a list of related API action links.

**Example:** `GET https://api.x402gle.com/trust/wallet/0x402Feee072D655B85e08f1751AF9ddbCd249521f`

---

### `fetch-wallet-trust-score`

**Wallet Trust Score** — Returns a trust case file for a given wallet address, including wash-trade score, ghost status, funding provenance, cluster membership, and on-chain activity metadata.

*Use when:* Use when an agent needs to assess the trustworthiness or risk profile of a blockchain wallet address, such as before executing a trade, accepting a payment, or evaluating a counterparty.

*Not for:* Do not use for seller-specific trust analysis or cluster-level lookups; use /trust/seller/{address} or /trust/cluster/{address} instead. Not suitable for batch wallet analysis — use POST /trust/batch for multiple addresses.

**Inputs:**

- `address` (string, required) — The wallet address to look up, provided as a path parameter in the URL.
- `chain` (string) — The blockchain network to scope the lookup (e.g. 'base', 'ethereum'). Passed as a query parameter.

**Returns:** Returns a trust.wallet case file with found status, verdict (wash_score/wash_label), ghost assessment, funding provenance, cluster membership, and activity timestamps, plus related action links.

**Example:** `GET https://api.x402gle.com/trust/wallet/0x402Feee072D655B85e08f1751AF9ddbCd249521f?chain=base`

---

### `check-seller-trust`

**Seller Trust Check** — Returns a trust case file for a seller address, including wash-trade score, transaction volume breakdown, sender analysis, and identification metadata.

*Use when:* Use when an agent needs to evaluate the trustworthiness or wash-trading risk of a seller address before engaging in a transaction or listing interaction.

*Not for:* Do not use for wallet-level trust checks (use /trust/wallet/{address}) or cluster-level analysis (use /trust/cluster/{address}). Not suitable for batch lookups of multiple addresses — use POST /trust/batch instead.

**Inputs:**

- `address` (string, required) — The seller's blockchain address to look up in the trust registry.

**Returns:** Returns a trust case file with product='trust.seller', the echoed address, found=false, and null-valued verdict/transaction/volume/sender/identification/provenance fields when no trust data exists for the address.

**Example:** `GET https://api.x402gle.com/trust/seller/0x402Feee072D655B85e08f1751AF9ddbCd249521f`

---

### `fetch-trust-cluster`

**Trust Cluster Lookup** — Returns wash-trading cluster membership data for a given wallet address, including cluster ID, size, member list, and aggregate wash/ghost/flagged scores.

*Use when:* Use when an agent needs to determine whether a wallet address belongs to a known wash-trading cluster, or to retrieve aggregate risk scores (wash score, ghost count, flagged count) for a cluster associated with that address.

*Not for:* Do not use for general wallet trust scoring or seller reputation; use /trust/wallet/{address} or /trust/seller/{address} instead. Not suitable for batch address lookups — use POST /trust/batch for multiple addresses.

**Inputs:**

- `address` (string, required) — The wallet address to look up in the wash-trading cluster corpus. Provided as a path parameter in the URL.

**Returns:** Returns a trust cluster case file with found status, cluster_id, size, seeds, members array, and aggregate wash/ghost/flagged scores; includes a note and related action links.

**Example:** `GET https://api.x402gle.com/trust/cluster/0x402Feee072D655B85e08f1751AF9ddbCd249521f`

---

### `fetch-wallet-trust-score`

**Wallet Trust Score** — Returns a wash-trading verdict and multi-signal trust analysis for a Solana wallet address, including ghost-wallet, circular-flow, funding-chain, and amount-uniformity signals.

*Use when:* Use when an agent needs to assess whether a Solana wallet is engaged in wash trading or coordinated manipulation before approving a transaction, listing, or reward payout.

*Not for:* Do not use for non-Solana chains; this endpoint is Solana-only. Not suitable for real-time streaming monitoring — this is a single-shot analysis per wallet address.

**Inputs:**

- `address` (string, required) — The Solana wallet address to evaluate for trust and wash-trading signals. Provided as a path parameter in the URL.

**Returns:** Returns a verdict object with wash_score and wash_label, plus four named signals (ghost_wallet, circular_flow, funding_chain, amount_uniformity) each with confidence, strength, evidence, and detailed aggregate data.

**Example:** `GET https://api.x402gle.com/trust/wallet/X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ`

---

### `fetch-wallet-trust-score`

**Wallet Trust Check** — Returns a trust and reputation case file for a given wallet address, including wash trading score, ghost status, funding source, cluster membership, and activity metadata.

*Use when:* Use when an agent needs to assess the reputation or risk profile of a wallet address before interacting with it, such as verifying a counterparty, screening for wash trading, or checking if an address is a ghost wallet.

*Not for:* Do not use for seller-specific trust checks; use /trust/seller/{address} instead. Not suitable for batch lookups of multiple addresses; use POST /trust/batch for that.

**Inputs:**

- `address` (string, required) — The wallet address to look up. Passed as a path parameter in the URL.

**Returns:** Returns a trust case file with found status, verdict containing wash_score and wash_label, ghost classification note, funding source, cluster membership, and on-chain activity timestamps.

**Example:** `GET https://api.x402gle.com/trust/wallet/0x402Feee072D655B85e08f1751AF9ddbCd249521f`

---

### `fetch-trust-cluster`

**Trust Cluster Lookup** — Returns the trust cluster membership, size, seeds, members, and aggregate wash-score metrics for a given blockchain address.

*Use when:* Use when an agent needs to determine whether a blockchain address belongs to a known wash-trading cluster, including cluster ID, member list, and aggregate flagged/ghost counts.

*Not for:* Do not use for individual wallet trust scores or seller reputation; use /trust/wallet/{address} or /trust/seller/{address} instead.

**Inputs:**

- `address` (string, required) — Blockchain address to look up in the wash analysis corpus. Passed as a path parameter in the URL.

**Returns:** Returns found status, cluster_id, size, seeds, members arrays, and aggregate wash-score metrics (avg_wash_score, ghost_count, flagged_count) for the queried address.

**Example:** `GET https://api.x402gle.com/trust/cluster/0x402Feee072D655B85e08f1751AF9ddbCd249521f`

---
