# x402gle Solana Wallet Trust Check

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

Checks and returns the trust status/score of a given Solana wallet address.

## Facts

- Endpoint: GET https://api.x402gle.com/trust/wallet/X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ
- Price: $0.05/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-8e815e4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RENfCDyL96PR0Ftbw4GDL

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-8e815e4f
```

Example prompt: Can you check the trust status of the Solana wallet X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ — I want to know if it's reputable before I send funds to it.

## When to prefer this

Use this endpoint when you need to quickly assess the trustworthiness or reputation of a specific Solana wallet address before transacting, interacting, or integrating with it. Prefer this over generic blockchain explorers when you need a structured trust score or risk profile rather than raw transaction history.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error
- Wallet address not found in trust database returns null or unknown status
- Payment of $0.05 USDC not received results in 402 payment required error
- Network or API downtime returns 5xx error
- Unsupported chain or non-Solana address returns unsupported network error

## How this service works

Checks a wallet’s trust status across supported networks.

## Output

Returns the trust status, score, or profile for the queried Solana wallet address, indicating whether the wallet is considered trustworthy, flagged, or risky based on on-chain analytics.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "address": "X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ"
  }
 }
}
```

## 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": "Wallet address (Solana or EVM)."
      }
     }
    }
   },
   "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-8e815e4f/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)
