GET
/
browser
/
{id}
/
cookies
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
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Id of the profile.

Response

200 - application/json

The response is of type object[].