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

# Unregister Wallet

> Remove a wallet registration from your account.



## OpenAPI

````yaml DELETE /v1/wallets
openapi: 3.1.0
info:
  title: LaserSell API
  version: 1.0.0
  description: >
    The LaserSell API builds unsigned Solana transactions for buying and selling
    tokens across supported DEXs.

    All transactions are non-custodial: the API returns unsigned
    `VersionedTransaction` payloads that you sign locally with your own keypair.


    Supported markets: Pump.fun, PumpSwap, Raydium (CPMM, Launchpad), Meteora
    (DBC, DAMM v2).
servers:
  - url: https://api.lasersell.io
    description: Production
security:
  - apiKey: []
tags:
  - name: Trading
    description: Build unsigned buy and sell transactions.
  - name: Account
    description: Account details and trade history.
  - name: Wallets
    description: Wallet registration for the Exit Intelligence Stream.
paths:
  /v1/wallets:
    delete:
      tags:
        - Wallets
      summary: Unregister Wallet
      description: Remove a wallet registration from your account.
      operationId: unregisterWallet
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UnregisterWalletRequest'
      responses:
        '200':
          description: Wallet unregistered successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnregisterWalletResponse'
        '401':
          description: Unauthorized. Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    UnregisterWalletRequest:
      type: object
      required:
        - wallet_pubkey
      properties:
        wallet_pubkey:
          type: string
          description: Solana wallet public key to unregister (base58).
          example: 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM
    UnregisterWalletResponse:
      type: object
      required:
        - wallet_pubkey
        - removed
      properties:
        wallet_pubkey:
          type: string
          description: The unregistered wallet public key.
          example: 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM
        removed:
          type: boolean
          description: Whether the wallet was successfully removed.
          example: true
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
          example: invalid mint address
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your LaserSell API key. Obtain one from the [LaserSell
        dashboard](https://www.lasersell.io).

````