Profile
Find cookies of profile
Introduction
API Reference
- Profile
- GETGet all profiles
- GETGet a random fingerprint
- PATCHUpdate proxy for multiple profiles
- PATCHUpdate chrome extensions for multiple profiles
- PATCHUpdate bookmarks for multiple profiles
- GETGet profile by id
- PUTUpdate profile
- DELDelete profile
- GETGet profile history
- PATCHUpdate profile history
- PATCHUpdate user agent of profile
- GETGet profile archive url
- GETFind cookies of profile
- POSTUpdate cookies for profile
- POSTCreate profile
- DELDelete multiple profiles
- POSTCreate profile with templates
- POSTCreate profile with partial parameters
- PATCHRefresh profile fingerprint
- GETRestore previous profile version
- PATCHUpdate profile notes
- PATCHUpdate multiple profiles names
- PATCHUpdate profile name
- PATCHUpdate profile geolocation
- PATCHUpdate profile proxy
- PATCHUpdate profile language
- PATCHUpdate profile timezone
- PATCHUpdate profile resolution
- PATCHUpdate profile user agent
- POSTClone profile
- POSTClone multiple profiles
- POSTRun profile in the cloud
- DELStop profile in the cloud
- POSTExport profiles
- POSTImport profiles
- GETGet list of deleted profiles
- POSTRestore deleted profiles
- GET
- Workspace
- Share
- Template
- Proxy
- User
- Folder
Cloud Browser
Python SDK
Limitations
Profile
Find cookies of profile
Gets cookies of the profile from database.
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the profile.
Response
200 - application/json
The response is of type object[]
.
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
}
]