> ## 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 All Wallet Groups

> Retrieves all wallet groups and their associated wallets.



## OpenAPI

````yaml /api/swagger.json get /wallets/
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /wallets/:
    get:
      tags:
        - Wallet
      summary: Get All Wallet Groups
      description: Retrieves all wallet groups and their associated wallets.
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.walletGroupsResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.walletGroupsResponse:
      type: object
      properties:
        groups:
          type: array
          items:
            $ref: '#/components/schemas/handlers.walletGroupResponse'
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string
    handlers.walletGroupResponse:
      type: object
      properties:
        chain:
          type: string
        id:
          type: string
        wallets:
          type: array
          items:
            $ref: '#/components/schemas/handlers.walletResponse'
    handlers.walletResponse:
      type: object
      properties:
        address:
          type: string
        id:
          type: string
        upgraded:
          type: boolean

````