> ## 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.

# Bot-tagged wallets

> Wallets the bot tagger flagged (high swap frequency / cross-mint breadth over a rolling 1h window), from the `bot_wallets` snapshot, ordered by `swaps_1h` desc then `wallet` asc. `count` is the full total (`count() OVER ()`).



## OpenAPI

````yaml /api-reference/openapi.json get /bot-traders
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:
  /bot-traders:
    get:
      tags:
        - Screener
      summary: Bot-tagged wallets
      description: >-
        Wallets the bot tagger flagged (high swap frequency / cross-mint breadth
        over a rolling 1h window), from the `bot_wallets` snapshot, ordered by
        `swaps_1h` desc then `wallet` asc. `count` is the full total (`count()
        OVER ()`).
      operationId: getBotTraders
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 500
          description: Page size (clamped 1..2000).
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
          description: Page offset.
      responses:
        '200':
          description: Bot wallet list
          content:
            application/json:
              schema:
                type: object
                properties:
                  bots:
                    type: array
                    items:
                      type: object
                      properties:
                        wallet:
                          type: string
                        swaps_1h:
                          type: integer
                          description: Rolling 1h swap count (uint64).
                        mints_1h:
                          type: integer
                          description: Rolling 1h distinct-mint count (uint64).
                  count:
                    type: integer
                    description: Full total (count() OVER ()).
                  computed_at:
                    type: integer
                    description: Epoch milliseconds.
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: INVALID_PARAM
            message:
              type: string
              example: >-
                use pair_address; see /api/v1/pairs?token_address=X to discover
                pools
  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.

````