GET
/
v1
/
sessions
/
{sessionId}
/
clipboard
curl --request GET \
  --url https://api.anchorbrowser.io/v1/sessions/{sessionId}/clipboard \
  --header 'anchor-api-key: <api-key>'
{
  "text": "Clipboard content"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

sessionId
string
required

The ID of the browser session

Response

200
application/json
Clipboard content retrieved successfully
text
string

Text content of the clipboard

Example:

"Clipboard content"