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

# Create Wallet

> Creates a new wallet within a specified wallet group.



## OpenAPI

````yaml /api/swagger.json post /wallets/
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /wallets/:
    post:
      tags:
        - Wallet
      summary: Create Wallet
      description: Creates a new wallet within a specified wallet group.
      requestBody:
        description: Create Wallet Request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/handlers.createWalletRequest'
        required: true
      responses:
        '201':
          description: Created
          content: {}
        '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.createWalletRequest:
      type: object
      properties:
        chain:
          type: string
        group_id:
          type: string
        private_key:
          type: string
        wallet_id:
          type: string
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string

````