# Strale Web3 Wallet Identity Lookup

> Strale Web3 Wallet Identity Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.108001/call, status unknown (last checked 2026-09-15).

Investigates a blockchain wallet address to return identity, compliance, and trust data for a given chain

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/web3-wallet-identity
- Price: $0.108001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-web3-wallet-identity-lookup-d4bf1424
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TFNRsxXXWQycF6G9AYxCe

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 strale-web3-wallet-identity-lookup-d4bf1424 -d '<json body>'
```

Example prompt: Can you investigate the wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on Ethereum mainnet (chain ID 1) and tell me if it's trustworthy — any compliance issues, identity signals, or red flags?

## When to prefer this

Use this endpoint when you need to verify or investigate a blockchain wallet address for identity, compliance, AML/KYC, or trust purposes before a transaction or business relationship — especially when you need structured JSON with an audit trail rather than a raw blockchain explorer result

## Known failure modes

- Invalid wallet address format — non-0x or malformed hex string
- Unknown or unsupported chain ID
- Wallet address not found or no data available on the specified chain
- Payment failure — insufficient USDC balance or x402 protocol error
- Rate limiting or upstream data source unavailability

## How this service works

Given a wallet address, discover everything knowable about the entity behind it. Starts with ENS reverse lookup to find a human-readable name, then assesses risk, age, and holdings. The entry point to the full compliance pipeline.

## Output

Structured JSON with identity signals, compliance check results, financial validation data, and an audit trail for the specified wallet address on the given chain

## Example request

```json
{
 "chain_id": "1",
 "wallet_address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain_id": {
   "type": "string",
   "description": "Chain ID, default 1"
  },
  "wallet_address": {
   "type": "string",
   "description": "Wallet address to investigate (0x...)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-web3-wallet-identity-lookup-d4bf1424/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
