GET
/
browser
/
fingerprint
curl --request GET \
  --url https://api.gologin.com/browser/fingerprint \
  --header 'Authorization: Bearer <token>'
{
  "navigator": {
    "userAgent": "<string>",
    "resolution": "<string>",
    "language": "<string>",
    "platform": "<string>",
    "hardwareConcurrency": 123,
    "deviceMemory": 123,
    "maxTouchPoints": 123
  },
  "plugins": {
    "enableVulnerable": true,
    "enableFlash": true
  },
  "canvas": {
    "mode": "real"
  },
  "mediaDevices": {
    "videoInputs": 123,
    "audioInputs": 123,
    "audioOutputs": 123
  },
  "webGLMetadata": {
    "mode": "mask",
    "vendor": "<string>",
    "renderer": "<string>"
  },
  "os": {},
  "osSpec": {},
  "devicePixelRatio": 123,
  "fonts": [
    "<string>"
  ],
  "extensionsToNewProfiles": [
    "<string>"
  ],
  "userExtensionsToNewProfiles": [
    "<string>"
  ],
  "autoLang": true
}

Authorizations

Authorization
string
header
required

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

Query Parameters

os
enum<string>
required

The operating system to use for the fingerprint.

Available options:
lin,
mac,
win,
android,
macM1
Example:

"win"

osSpec
enum<string>

The specific version of the operating system to use for the fingerprint.

Available options:
M1,
M2,
M3,
M4,
win11,
Example:

"win11"

template
string

The template to use for the fingerprint.

currentWorkspace
string
required

The current workspace to use for the fingerprint.

Response

200 - application/json

The response is of type object.