GET
/
browser
/
{id}
/
cookies
Find cookies of profile
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
url
string
required
domain
string
required
name
string
required
value
string
required
hostOnly
boolean
required
path
string
required
secure
boolean
required
sameSite
string
required
httpOnly
boolean
required
session
boolean
required
expirationDate
number
required