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
Get profile by id
Returns full profile info by id.
GET
/
browser
/
{id}
curl --request GET \
--url https://api.gologin.com/browser/{id} \
--header 'Authorization: Bearer <token>'
{
"name": "<string>",
"id": "<string>",
"notes": "<string>",
"facebookAccountData": {
"date": "<string>",
"token": "<string>",
"fbIdAccount": "<string>",
"email": "<string>",
"password": "<string>",
"googleDriveUrl": "<string>",
"fb2faToolUrl": "<string>",
"fbUrl": "<string>",
"uaVersion": "<string>",
"cookies": "<string>",
"notParsedData": [
"<string>"
]
},
"browserType": "fierfox",
"canBeRunning": true,
"os": "lin",
"osSpec": "M1",
"isM1": true,
"startUrl": "<string>",
"autoLang": true,
"bookmarks": {},
"googleServicesEnabled": true,
"isBookmarksSynced": true,
"launchArguments": "<string>",
"lockEnabled": true,
"debugMode": true,
"navigator": {
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.6998.36 Safari/537.36",
"resolution": "1920x1080",
"language": "en-US",
"platform": "Win32",
"hardwareConcurrency": 4,
"deviceMemory": 4,
"maxTouchPoints": 10
},
"storage": {
"local": true,
"extensions": true,
"bookmarks": true,
"history": true,
"passwords": true,
"session": true,
"indexedDb": false,
"enableExternalExtensions": false
},
"proxyEnabled": true,
"autoProxyServer": "<string>",
"autoProxyUsername": "<string>",
"autoProxyPassword": "<string>",
"proxy": {
"id": "6201422450e3b9cd602f24e1",
"mode": "http",
"host": "127.0.0.1",
"port": 80,
"username": "user",
"password": "password",
"changeIpUrl": "https://some-proxy-provider.com/change-ip",
"customName": "My Proxy"
},
"archivedProxy": {
"id": "<string>",
"name": "<string>",
"country": "<string>"
},
"dns": "<string>",
"plugins": {
"enableVulnerable": true,
"enableFlash": true
},
"timezone": {
"enabled": true,
"fillBasedOnIp": true,
"timezone": "America/New_York"
},
"geolocation": {
"mode": "prompt",
"enabled": true,
"customize": true,
"fillBasedOnIp": true,
"isCustomCoordinates": true,
"latitude": 123,
"longitude": 123,
"accuracy": 123
},
"audioContext": {
"mode": "noise",
"noise": 0.1
},
"canvas": {
"mode": "off",
"noise": 0.1
},
"fonts": {
"families": [
"Arial",
"Helvetica",
"Verdana"
],
"enableMasking": true,
"enableDomRect": true
},
"mediaDevices": {
"videoInputs": 1,
"audioInputs": 1,
"audioOutputs": 1,
"enableMasking": false,
"uid": "<string>"
},
"webRTC": {
"enable": true,
"isEmptyIceList": true,
"mode": "off"
},
"webGL": {
"mode": "noise",
"getClientRectsNoise": 0.5,
"noise": 0.5
},
"webGpu": {},
"clientRects": {
"mode": "noise",
"noise": 0.5
},
"webGLMetadata": {
"mode": "mask",
"vendor": "Google Inc. (Intel)",
"renderer": "ANGLE (Intel, Intel(R) HD Graphics 630 Direct3D11 vs_5_0 ps_5_0, D3D11)"
},
"extensions": {
"enabled": true,
"preloadCustom": true,
"names": [
"WEBGL_debug_renderer_info",
"EXT_texture_filter_anisotropic"
]
},
"profile": "<string>",
"s3Path": "<string>",
"s3Date": "<string>",
"s3SignedUrl": "<string>",
"createdInOs": {},
"devicePixelRatio": 123,
"checkCookies": true,
"chromeExtensions": [
"<string>"
],
"userChromeExtensions": [
"<string>"
],
"isAutoGenerated": true,
"permissions": {}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the profile.
Query Parameters
If you want to get the profile from a specific workspace.
Example:
"60a763f86501b3abcdc54b21"
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.gologin.com/browser/{id} \
--header 'Authorization: Bearer <token>'
{
"name": "<string>",
"id": "<string>",
"notes": "<string>",
"facebookAccountData": {
"date": "<string>",
"token": "<string>",
"fbIdAccount": "<string>",
"email": "<string>",
"password": "<string>",
"googleDriveUrl": "<string>",
"fb2faToolUrl": "<string>",
"fbUrl": "<string>",
"uaVersion": "<string>",
"cookies": "<string>",
"notParsedData": [
"<string>"
]
},
"browserType": "fierfox",
"canBeRunning": true,
"os": "lin",
"osSpec": "M1",
"isM1": true,
"startUrl": "<string>",
"autoLang": true,
"bookmarks": {},
"googleServicesEnabled": true,
"isBookmarksSynced": true,
"launchArguments": "<string>",
"lockEnabled": true,
"debugMode": true,
"navigator": {
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.6998.36 Safari/537.36",
"resolution": "1920x1080",
"language": "en-US",
"platform": "Win32",
"hardwareConcurrency": 4,
"deviceMemory": 4,
"maxTouchPoints": 10
},
"storage": {
"local": true,
"extensions": true,
"bookmarks": true,
"history": true,
"passwords": true,
"session": true,
"indexedDb": false,
"enableExternalExtensions": false
},
"proxyEnabled": true,
"autoProxyServer": "<string>",
"autoProxyUsername": "<string>",
"autoProxyPassword": "<string>",
"proxy": {
"id": "6201422450e3b9cd602f24e1",
"mode": "http",
"host": "127.0.0.1",
"port": 80,
"username": "user",
"password": "password",
"changeIpUrl": "https://some-proxy-provider.com/change-ip",
"customName": "My Proxy"
},
"archivedProxy": {
"id": "<string>",
"name": "<string>",
"country": "<string>"
},
"dns": "<string>",
"plugins": {
"enableVulnerable": true,
"enableFlash": true
},
"timezone": {
"enabled": true,
"fillBasedOnIp": true,
"timezone": "America/New_York"
},
"geolocation": {
"mode": "prompt",
"enabled": true,
"customize": true,
"fillBasedOnIp": true,
"isCustomCoordinates": true,
"latitude": 123,
"longitude": 123,
"accuracy": 123
},
"audioContext": {
"mode": "noise",
"noise": 0.1
},
"canvas": {
"mode": "off",
"noise": 0.1
},
"fonts": {
"families": [
"Arial",
"Helvetica",
"Verdana"
],
"enableMasking": true,
"enableDomRect": true
},
"mediaDevices": {
"videoInputs": 1,
"audioInputs": 1,
"audioOutputs": 1,
"enableMasking": false,
"uid": "<string>"
},
"webRTC": {
"enable": true,
"isEmptyIceList": true,
"mode": "off"
},
"webGL": {
"mode": "noise",
"getClientRectsNoise": 0.5,
"noise": 0.5
},
"webGpu": {},
"clientRects": {
"mode": "noise",
"noise": 0.5
},
"webGLMetadata": {
"mode": "mask",
"vendor": "Google Inc. (Intel)",
"renderer": "ANGLE (Intel, Intel(R) HD Graphics 630 Direct3D11 vs_5_0 ps_5_0, D3D11)"
},
"extensions": {
"enabled": true,
"preloadCustom": true,
"names": [
"WEBGL_debug_renderer_info",
"EXT_texture_filter_anisotropic"
]
},
"profile": "<string>",
"s3Path": "<string>",
"s3Date": "<string>",
"s3SignedUrl": "<string>",
"createdInOs": {},
"devicePixelRatio": 123,
"checkCookies": true,
"chromeExtensions": [
"<string>"
],
"userChromeExtensions": [
"<string>"
],
"isAutoGenerated": true,
"permissions": {}
}