# Concierge Agent — Wallet Intelligence Lookup

> Concierge Agent — Wallet Intelligence Lookup is a paid API for AI agents from conc-exe.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves DeFi and token intelligence for a given EVM or Solana wallet address via pay-per-call AI market analysis

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-wallet
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/concierge-agent-wallet-intelligence-lookup-bec76243
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9R6dK_EVjD6OPPSkOKXVr

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 concierge-agent-wallet-intelligence-lookup-bec76243 -d '<json body>'
```

Example prompt: Can you look up the token holdings and DeFi intelligence for my Solana wallet 7humXYZ... using the Concierge Agent?

## When to prefer this

Use this endpoint when an agent needs on-chain wallet intelligence — token balances, DeFi positions — for either an EVM (0x...) or Solana address, especially in a pay-per-call context where no subscription is required.

## Known failure modes

- Invalid or malformed wallet address returns error or empty token list
- Unsupported chain or address format results in no data
- Network or payment failure (x402) prevents call from completing
- Wallet with no on-chain activity returns empty tokens array

## How this service works

Solana wallet token snapshot (Helius when configured) or EVM address ack

## Output

Returns a JSON object with the detected chain (e.g. 'solana' or 'evm'), the wallet address, and an array of token holdings or DeFi positions associated with that wallet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "message": {
   "type": "string",
   "description": "Optional context; may include an address"
  },
  "evmAddress": {
   "type": "string",
   "description": "EVM wallet address (0x…)"
  },
  "solAddress": {
   "type": "string",
   "description": "Solana wallet address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "wallet": {
   "chain": "solana",
   "tokens": [],
   "address": "7hum…"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-wallet-intelligence-lookup-bec76243/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from conc-exe.xyz](https://www.zero.xyz/host/conc-exe.xyz/llms.txt)
