# x402gle Wallet Trust Profile Checker

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

Returns the trust profile or score for a given Solana or EVM wallet address.

## Facts

- Endpoint: GET https://api.x402gle.com/trust/wallet/:address
- Price: $0.050000/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-2516c967
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_296EXn9RYpwfy-7UOwmR2

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-2516c967
```

Example prompt: Can you check the trust profile for wallet address 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db — I want to know if it's considered trustworthy before I send funds to it.

## When to prefer this

Use this endpoint when you need to assess the trustworthiness or reputation of a specific wallet address before a transaction, particularly when working with both Solana and EVM-compatible wallets. Prefer this over general blockchain explorers when a structured trust score rather than raw transaction history is needed.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain/address format returns an error
- Wallet address not found in trust database may return null or empty trust data
- Payment of $0.05 USDC not fulfilled results in 402 Payment Required
- Rate limiting may occur with excessive calls

## How this service works

Checks the trust profile or score for a wallet address.

## Output

Returns a trust profile or trust score object for the specified wallet address, indicating the wallet's reputation or risk level across supported networks (Solana or EVM-compatible chains).

## 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-2516c967/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)
