> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# walletLabelTypes

> Returns the full vocabulary of wallet label types and their metadata.

<div data-generated>
  ## GraphQL

  ```
  type Query {
    walletLabelTypes: [WalletLabelType!]!
  }

  type WalletLabelType {
    name: String!
    displayName: String!
    description: String!
  }
  ```
</div>

This query returns the canonical vocabulary used by the `identityLabels` field on [`WalletFilterResult`](/api-reference/types/walletfilterresult) and [`Wallet`](/api-reference/types/wallet). Use it to discover every label value a wallet might carry, render human-readable badges in your UI, or build a filter picker.

`identityLabels` is distinct from the behavioral `labels` array on the same types:

* **Behavioral labels** are derived automatically from on-chain activity (trading patterns, holdings, swap behavior)
* **Identity labels** are curated. They come from internal research on scraped sources (Etherscan tagging, public attribution datasets, social profiles, exchange disclosures) and from community proposals reviewed by Codex.

## Available label types

The table below is generated from the live `walletLabelTypes` response on every docs build, so it always reflects the current vocabulary.

<div data-generated>
  | Name          | Display Name | Description                       |
  | ------------- | ------------ | --------------------------------- |
  | `CEX`         | CEX          | Centralized exchange wallet       |
  | `DEX`         | DEX          | Decentralized exchange wallet     |
  | `BRIDGE`      | Bridge       | Cross-chain bridge contract       |
  | `MIXER`       | Mixer        | Privacy mixer                     |
  | `KOL`         | KOL          | Key opinion leader / influencer   |
  | `FOUNDER`     | Founder      | Project founder wallet            |
  | `VC`          | VC           | Venture capital fund              |
  | `WHALE`       | Whale        | High-balance / high-volume wallet |
  | `BOT`         | Bot          | Automated trading bot             |
  | `MEV_BOT`     | MEV Bot      | MEV extraction bot                |
  | `SNIPER`      | Sniper       | Buys at launch / first block      |
  | `SCAMMER`     | Scammer      | Known scammer                     |
  | `RUG_PULLER`  | Rug Puller   | Known rug-puller                  |
  | `HACKER`      | Hacker       | Exploited a contract              |
  | `BLACKLISTED` | Blacklisted  | On our internal blacklist         |
  | `SANCTIONED`  | Sanctioned   | OFAC sanctioned                   |
  | `INSIDER`     | Insider      | Pre-launch insider buyer          |
</div>

## Query example

<a href="/explore" target="_blank" rel="noopener noreferrer">Test this query in the Explorer →</a>

```graphql theme={null}
{
  walletLabelTypes {
    name
    displayName
    description
  }
}
```
