> For the complete documentation index, see [llms.txt](https://cabalspy.gitbook.io/cabalspy-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cabalspy.gitbook.io/cabalspy-docs/wallet-activity/wallet-lookup.md).

# Wallet Lookup

Looks up a wallet address across ALL chains and wallet types and returns the profile of the first match. Useful when you have an address but don't know which chain or category it is tracked under. Always returns `200` with a `found` flag (no `404`).

## Find a wallet across all chains

> Searches every chain/type combination for the given address. If found, returns \`found: true\` plus the profile; otherwise \`found: false\`.\
> \
> \*\*Parameters\*\*\
> \- \`address\` (required) — wallet address (Solana base58 or \`0x…\` for EVM chains)\
> \- \`api\_key\` (optional if Bearer header is used)<br>

```json
{"openapi":"3.0.3","info":{"title":"CabalSpy API — Wallet Lookup","version":"1.0.0"},"tags":[{"name":"Wallet Lookup","description":"Looks up a wallet address across ALL chains and wallet types and returns the profile of the first match. Useful when you have an address but don't know which chain or category it is tracked under. Always returns `200` with a `found` flag (no `404`).\n"}],"servers":[{"url":"https://api.cabalspy.xyz"}],"security":[{"bearerAuth":[]},{"apiKeyQuery":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"Authorization: Bearer YOUR_KEY"},"apiKeyQuery":{"type":"apiKey","in":"query","name":"api_key"}},"schemas":{"WalletLookupEnvelope":{"type":"object","properties":{"success":{"type":"boolean"},"data":{"type":"object","description":"When found is false, only found and wallet_address are present.\n","properties":{"found":{"type":"boolean"},"wallet_address":{"type":"string"},"name":{"type":"string"},"image_url":{"type":"string"},"twitter":{"type":"string"},"telegram":{"type":"string"},"copytrade_link":{"type":"string"},"type":{"type":"string","description":"Wallet category (kol / smart / whale)."},"blockchain":{"type":"string","enum":["solana","bnb","base","eth"]},"currency":{"type":"string"}}},"meta":{"type":"object"}}},"ErrorEnvelope":{"type":"object","properties":{"success":{"type":"boolean"},"error":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"request_id":{"type":"string"},"docs":{"type":"string"}}}}}}},"paths":{"/v1/wallets/lookup":{"get":{"tags":["Wallet Lookup"],"summary":"Find a wallet across all chains","operationId":"lookupWallet","description":"Searches every chain/type combination for the given address. If found, returns `found: true` plus the profile; otherwise `found: false`.\n\n**Parameters**\n- `address` (required) — wallet address (Solana base58 or `0x…` for EVM chains)\n- `api_key` (optional if Bearer header is used)\n","parameters":[{"name":"address","in":"query","required":true,"schema":{"type":"string"}},{"name":"api_key","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Lookup completed. `found` indicates whether the address is tracked.\n","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WalletLookupEnvelope"}}}},"400":{"description":"Missing or invalid parameter.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorEnvelope"}}}},"401":{"description":"Missing API key.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorEnvelope"}}}},"403":{"description":"Invalid or exhausted API key.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorEnvelope"}}}},"429":{"description":"Rate limit exceeded.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorEnvelope"}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cabalspy.gitbook.io/cabalspy-docs/wallet-activity/wallet-lookup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
