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

# Create Wallet Address

> Create a new wallet deposit address for a coin/chain



## OpenAPI

````yaml post /api/v2.1/fincard/virtual/wallet/v2/create
openapi: 3.1.0
info:
  title: Business BFF API
  version: 1.0.0
  description: Backend for Frontend - Business Panels Orchestration Layer
servers:
  - url: https://sandbox.finhub.cloud
    description: Sandbox Environment
security: []
tags:
  - name: AML
    description: Anti-Money Laundering checks and transaction monitoring
  - name: Admin - Consent Management
    description: Operations for managing consent templates and definitions
  - name: B2B Customer - Organization
    description: B2B organization registration and management
  - name: B2C Customer - Individual
    description: Individual customer registration and lifecycle management
  - name: BFF Admin - Tenant Initialization
    description: Lazy tenant initialization for fast startup
  - name: Catalog Hierarchy
    description: Hierarchical catalog management APIs
  - name: Catalog-Process Mapping
    description: APIs for catalog-process relationship management
  - name: Consent
    description: Payment consent creation and approval
  - name: Draft Management
  - name: External Events
    description: Kafka-to-HTTP bridge event ingestion and query
  - name: FinCard Virtual - Webhooks
    description: FinCard Virtual Card Webhook receiver
  - name: FinCard Virtual Account
    description: FinCard Virtual Card Account API proxy
  - name: FinCard Virtual Card Holder
    description: FinCard Virtual Card Holder API proxy
  - name: FinCard Virtual Cards
    description: FinCard Virtual Card API proxy
  - name: FinCard Virtual Common
    description: FinCard Virtual Card Common API proxy
  - name: FinCard Virtual Wallet
    description: FinCard Virtual Card Wallet API v2 proxy
  - name: FinTrans - Operations
    description: Financial transaction operations
  - name: Internal Webhooks
    description: Internal service-to-service webhook trigger (HMAC-secured)
  - name: MFE Preload
    description: MFE preload endpoints for SSR optimization
  - name: MFE Registry
    description: MFE Registry management endpoints
  - name: Payment Consent Management
    description: Operations for managing payment consents and validation
  - name: Person
    description: Person details for process context
  - name: Products
    description: Product Catalog Management API
  - name: Reference Data
    description: Shared reference data (countries, etc.)
  - name: Tenant Lifecycle
    description: Tenant mode transitions and lifecycle management
  - name: Tenant Registration
    description: Self-registration and tenant onboarding
  - name: Transfers
    description: Transfer prepare/execute aliases for muse-proxy compatibility
  - name: Verification
    description: Customer verification (KYC/KYB/AML) management
  - name: Wallet
    description: Wallet operations and balance management
  - name: Webhooks
    description: Webhook subscription and delivery management
paths:
  /api/v2.1/fincard/virtual/wallet/v2/create:
    post:
      tags:
        - FinCard Virtual Wallet
      summary: Create Wallet Address
      description: Create a new wallet deposit address for a coin/chain
      parameters:
        - description: User agent
          name: User-Agent
          in: header
          schema:
            type: string
        - description: Forwarded for
          name: X-Forwarded-For
          in: header
          schema:
            type: string
        - $ref: '#/components/parameters/XForwardedFromHeader'
        - description: Tenant ID
          name: X-Tenant-ID
          in: header
          schema:
            type: string
        - description: Device ID
          name: deviceId
          in: header
          schema:
            type: string
        - description: Platform
          name: platform
          in: header
          schema:
            type: string
      requestBody:
        description: Create wallet address request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWalletAddressRequest'
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateWalletAddressResponse'
        '400':
          description: Bad request
        '500':
          description: Internal server error
components:
  parameters:
    XForwardedFromHeader:
      name: X-Forwarded-From
      in: header
      required: true
      description: Client application identifier
      schema:
        type: string
        example: client-app
  schemas:
    CreateWalletAddressRequest:
      type: object
      required:
        - coinKey
      description: Create wallet address request
      properties:
        coinKey:
          type: string
          examples:
            - BTC
          description: Coin key
          example: BTC
        accountId:
          type: string
          description: Account ID
        chainKey:
          type: string
          description: Chain key
        label:
          type: string
          description: Address label
    CreateWalletAddressResponse:
      type: object
      description: Create wallet address response
      properties:
        success:
          type: boolean
          examples:
            - true
          description: Success flag
          example: true
        code:
          type: integer
          format: int32
          examples:
            - 200
          description: Response code
          example: 200
        msg:
          type: string
          examples:
            - Success
          description: Response message
          example: Success
        data:
          $ref: '#/components/schemas/WalletAddressData'
          type: object
          description: Created wallet address data
    WalletAddressData:
      type: object
      description: Created wallet address data
      properties:
        addressId:
          type: string
          description: Address ID
        accountId:
          type: string
          description: Account ID
        coinKey:
          type: string
          description: Coin key
        chain:
          type: string
          description: Blockchain network
        address:
          type: string
          description: Wallet address
        walletAddress:
          type: string
          description: Wallet address (Wasabi alias for address)
        chainKey:
          type: string
          description: Chain key (BFF extension - maps to chain)
        addressType:
          type: string
          description: Address type
        label:
          type: string
          description: Address label
        memo:
          type: string
          description: Memo/Tag
        qrCodeUrl:
          type: string
          description: QR code URL
        isHdWallet:
          type: boolean
          description: Is HD wallet address
        derivationPath:
          type: string
          description: Derivation path
        active:
          type: boolean
          description: Is active
        totalReceived:
          type: number
          description: Total received
        totalSent:
          type: number
          description: Total sent
        balance:
          type: number
          description: Balance
        unconfirmedBalance:
          type: number
          description: Unconfirmed balance
        numberOfTransactions:
          type: integer
          format: int32
          description: Number of transactions
        createTime:
          type: integer
          format: int64
          description: Create time
        lastActivityTime:
          type: integer
          format: int64
          description: Last activity time

````