Appearance
Browser Profile Data
Endpoint for unlocking encrypted browser profile data.
Base URL: https://api.multilogin.com
Unlock Profile
POST /profile/unlock_data
Decrypt and retrieve the full browser profile data including cookies, local storage, and session data.
| Parameter | Type | Required | Description |
|---|---|---|---|
profile_id | UUID | Yes | The profile to unlock |
bash
curl -X POST https://api.multilogin.com/profile/unlock_data \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"profile_id": "PROFILE_UUID"}'Response:
json
{
"status": {
"error_code": "",
"http_code": 200,
"message": "Success"
},
"data": {
"profile_id": "8feb79fc-2b42-4d54-a3eb-f26fddd31499",
"unlocked": true
}
}WARNING
Profile data is encrypted at rest. This endpoint temporarily decrypts it for access. The profile will re-lock after a timeout period.
Use Cases
- Inspecting browser data for debugging
- Extracting cookies or session data
- Verifying profile integrity before automation
- Accessing stored credentials or local storage