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

# User-controlled wallets client SDKs

> Client SDKs for embedding user-controlled wallets in web, iOS, Android, and React Native applications.

Circle's User-Controlled Wallets client SDKs let you embed user-controlled
wallets directly in your web and mobile applications. The SDKs handle key
management, authentication, confirmation UIs, and signing flows so that the
user's keyshares never leave the user's device. They pair with a server-side SDK
or direct API integration that orchestrates wallet operations from your backend.

## Choose your platform

<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4 xl:gap-8 pt-4">
  <Card href="/sdks/user-controlled/web-sdk" title="Web SDK">
    <div className="inline-flex items-center space-x-2 rounded-sm py-2 pr-1 text-blue-400 font-circular-bold hover:bg-blue-50">
      <div>Get started</div>

      <Icon icon="arrow-right" />
    </div>
  </Card>

  <Card href="/sdks/user-controlled/ios-sdk" title="iOS SDK">
    <div className="inline-flex items-center space-x-2 rounded-sm py-2 pr-1 text-blue-400 font-circular-bold hover:bg-blue-50">
      <div>Get started</div>

      <Icon icon="arrow-right" />
    </div>
  </Card>

  <Card href="/sdks/user-controlled/android-sdk" title="Android SDK">
    <div className="inline-flex items-center space-x-2 rounded-sm py-2 pr-1 text-blue-400 font-circular-bold hover:bg-blue-50">
      <div>Get started</div>

      <Icon icon="arrow-right" />
    </div>
  </Card>

  <Card href="/sdks/user-controlled/react-native-sdk" title="React Native SDK">
    <div className="inline-flex items-center space-x-2 rounded-sm py-2 pr-1 text-blue-400 font-circular-bold hover:bg-blue-50">
      <div>Get started</div>

      <Icon icon="arrow-right" />
    </div>
  </Card>
</div>

## How it works

<Frame>
  <img src="https://mintcdn.com/circle-167b8d39/ilQRXPPagmT4tMsq/w3s/images/ucw-sdkafucw-arch.png?fit=max&auto=format&n=ilQRXPPagmT4tMsq&q=85&s=c336b407e4af4b08cfbefcece4dea2a5" width="3576" height="2134" data-path="w3s/images/ucw-sdkafucw-arch.png" />
</Frame>

A client SDK call flows through Circle's APIs using a challenge ID that the user
authorizes on-device:

1. A user performs a wallet action in your application—for example, initiating a
   USDC transfer.
2. Your server requests the action through Circle's User-Controlled Wallets REST
   APIs.
3. The API returns a response containing a `challengeId`. The challenge must be
   completed before the action executes.
4. Your server passes the `challengeId` to the client SDK. The SDK prompts the
   user to authorize the action.
5. The user authorizes by entering their PIN, completing biometric verification,
   or confirming on a Confirmation UI. The SDK encrypts the input and delivers
   it to Circle.
6. Circle sends a webhook callback (or your server polls the corresponding `GET`
   endpoint) with the action's status.
7. Your application notifies the end user that the action is complete.

## Security

Keyshares remain exclusively on the user's device and are never exposed to your
server or to Circle. The SDKs encrypt all request bodies in transit. The user
retains full control of their assets—neither your application nor Circle can
access funds without the user's authorization.

## UI customization

Each platform SDK ships with prebuilt UIs for PIN entry, security questions,
transaction confirmation, and message signing. Override colors, copy, layout,
and component styling to match your brand:

* [Confirmation UIs](/sdks/user-controlled/confirmation-uis)
* [Web SDK UI customizations](/sdks/user-controlled/web-sdk-ui-customizations)
* [iOS SDK UI customization API](/sdks/user-controlled/ios-sdk-ui-customization-api)
* [Android SDK UI customization API](/sdks/user-controlled/android-sdk-ui-customization-api)
* [React Native SDK UI customization API](/sdks/user-controlled/react-native-sdk-ui-customization-api)

## Server-side companion

The client SDK pairs with a server-side SDK that orchestrates wallet operations
from your backend. Use the Node.js or Python server SDK to create challenges,
manage wallet sets, and integrate with Circle's APIs:

* [Node.js SDK](/sdks/user-controlled-wallets-nodejs-sdk)
* [Python SDK](/sdks/user-controlled-wallets-python-sdk)
