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

# Add Whitelist/Blacklist Wallets

> Adds whitelist/blacklist wallets.



## OpenAPI

````yaml /api/swagger.json post /wlbl
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /wlbl:
    post:
      tags:
        - WlBl
      summary: Add Whitelist/Blacklist Wallets
      description: Adds whitelist/blacklist wallets.
      requestBody:
        description: Add Whitelist/Blacklist Wallets Request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/handlers.addWlBlWalletsRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.addWlBlWalletsResponse'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.addWlBlWalletsRequest:
      type: object
      properties:
        wallets:
          type: array
          items:
            $ref: '#/components/schemas/handlers.wlblWallet'
    handlers.addWlBlWalletsResponse:
      type: object
      properties:
        errors:
          type: object
          additionalProperties:
            type: string
    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

````