Skip to main content
POST
/
browser
/
quick
Create profile with templates
curl --request POST \
  --url https://api.gologin.com/browser/quick \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "My Test Profile",
  "os": "win",
  "osSpec": "win11"
}'

Authorizations

Authorization
string
header
required

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

Query Parameters

currentWorkspace
string

Body

application/json
os
enum<string>
required

OS type. It should be the same with the OS you want to run the browser on.

Available options:
lin,
mac,
win,
android,
android-cloud
Example:

"win"

name
string

Name of the profile.

Example:

"My Test Profile"

osSpec
enum<string>

Here you can specify OS specification. For example chip version for macos or version of windows.

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

"win11"