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

# Wallet Unlink

> Revert from self-custody back to managed wallet.

Restores the user's managed wallet from legacy columns.
Users can switch back and forth freely between managed and self-custody.

Rate limited: 10 attempts per hour (IP-based via slowapi).



## OpenAPI

````yaml /openapi.json post /api/sdk/wallet/unlink
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/wallet/unlink:
    post:
      tags:
        - sdk-wallet
      summary: Wallet Unlink
      description: |-
        Revert from self-custody back to managed wallet.

        Restores the user's managed wallet from legacy columns.
        Users can switch back and forth freely between managed and self-custody.

        Rate limited: 10 attempts per hour (IP-based via slowapi).
      operationId: api_wallet_unlink_api_sdk_wallet_unlink_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````