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

# Wallet classification tags

> Returns the set of tags Dexploit's wallet-intel pipeline has applied to a wallet (e.g. `sniper`, `insider`, `whale`, `smart_money`). Tags are computed asynchronously — `computed_at: 0` means we haven't profiled this wallet yet.



## OpenAPI

````yaml /api-reference/openapi.json get /wallets/{wallet}/tags
openapi: 3.1.0
info:
  title: Dexploit API
  version: 1.0.0
  description: Real-time and historical Solana DEX swap and OHLCV data.
servers:
  - url: https://api.dexploit.dev
    description: Production
security:
  - ApiKeyHeader: []
  - BearerAuth: []
  - ApiKeyQuery: []
paths:
  /wallets/{wallet}/tags:
    get:
      tags:
        - Wallet intel
      summary: Wallet classification tags
      description: >-
        Returns the set of tags Dexploit's wallet-intel pipeline has applied to
        a wallet (e.g. `sniper`, `insider`, `whale`, `smart_money`). Tags are
        computed asynchronously — `computed_at: 0` means we haven't profiled
        this wallet yet.
      operationId: getWalletTags
      parameters:
        - name: wallet
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Wallet tags
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WalletTags'
components:
  schemas:
    WalletTags:
      type: object
      properties:
        wallet:
          type: string
        tags:
          type: array
          items:
            type: object
            required:
              - tag
            properties:
              tag:
                type: string
                enum:
                  - sniper
                  - insider
                  - dev
                  - whale
                  - smart_money
                  - fresh
                  - kol
                  - bundler
                  - bot
                  - arbitrage
                  - exchange
              score:
                type:
                  - number
                  - 'null'
                description: Tag confidence score, or `null`.
              mint:
                type:
                  - string
                  - 'null'
                description: >-
                  The mint this tag was derived from, or `null` if
                  wallet-global.
              computed_at:
                type: integer
                description: Unix epoch seconds when this tag was computed (per-tag).
          description: >-
            Wallet classification tags. **Not deduplicated** — one entry per
            `(tag, mint)`, so the same `tag` value can appear multiple times
            (once per mint it was derived from). A wallet active across many
            mints can return many entries.
        computed_at:
          type: integer
          description: Unix epoch seconds; 0 if never computed.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Preferred for swaps-api endpoints (`/swaps/*`, `/stats/*`, `/trending`,
        `/pool-events`).
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Required by the OHLCV endpoints (`/api/v1/*`) and accepted by every
        other endpoint. Send `Authorization: Bearer ohlcv_live_sk_<your_key>`.
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: >-
        Browser-friendly alternative to the Bearer header — accepted by every
        endpoint and required for WebSocket from the browser.

````