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

# Get Whitelist/Blacklist Wallets by Group ID

> Retrieves whitelist/blacklist wallets by group ID.



## OpenAPI

````yaml /api/swagger.json get /wlbl/{group_id}
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /wlbl/{group_id}:
    get:
      tags:
        - WlBl
      summary: Get Whitelist/Blacklist Wallets by Group ID
      description: Retrieves whitelist/blacklist wallets by group ID.
      parameters:
        - name: group_id
          in: path
          description: Group ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.getWlBlWalletsResponse'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.getWlBlWalletsResponse:
      type: object
      properties:
        wallets:
          type: array
          items:
            $ref: '#/components/schemas/handlers.wlblWallet'
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string
    handlers.wlblWallet:
      type: object
      properties:
        address:
          type: string
        group_id:
          type: string
        is_blacklisted:
          type: boolean
        is_whitelisted:
          type: boolean

````