cURL
curl --request GET \ --url https://api.gologin.com/browser/{id}/cookies \ --header 'Authorization: Bearer <token>'
[ { "url": "<string>", "domain": "<string>", "name": "<string>", "value": "<string>", "hostOnly": true, "path": "<string>", "secure": true, "sameSite": "<string>", "httpOnly": true, "session": true, "expirationDate": 123 } ]
Gets cookies of the profile from database.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Id of the profile.
The response is of type object[].
object[]