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

# my.getClipboard

> Get content from the clipboard.

Read text content from the device clipboard.

## Parameters

| Property | Type     | Required | Description                     |
| -------- | -------- | -------- | ------------------------------- |
| success  | Function | No       | Callback with clipboard content |
| fail     | Function | No       | Callback on failure             |
| complete | Function | No       | Callback that always executes   |

## Success Callback

| Property | Type   | Description            |
| -------- | ------ | ---------------------- |
| text     | String | Clipboard text content |

## Code Example

```javascript theme={null}
my.getClipboard({
  success: (res) => {
    console.log('Clipboard:', res.text);
  }
});
```
