- API
- Automation
- Docker
- Browserless(Beta)
StartOnceBrowser
POST
/browsers/once
v2/Browsers
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/json
name
string
optional
nst_${timestamp}
Example:
Profile
platform
enum<string>
optional
Windows
on windows otherwise macOS
Allowed values:
WindowsmacOSLinux
Example:
Windows
kernelMilestone
enum<string>
optional
Allowed values:
128130132
Example:
132
autoClose
boolean
optional
timedCloseSec
integer
optional
Example:
30
fingerprintRandomness
boolean
optional
Example:
true
headless
string
optional
incognito
boolean
optional
remoteDebuggingPort
integer
optional
proxy
string
optional
Example:
http://username:password@ip:port
skipProxyChecking
boolean
optional
Based On IP
flagged fingerprints will take on your local IP rather than your proxy IPargs
object
optional
Additional properties
string
optional
startupUrls
array[string]
optional
fingerprint
object
optional
deviceMemory
enum<integer>
optional
Allowed values:
248
Example:
8
disableImageLoading
boolean
optional
doNotTrack
boolean
optional
flags
object
optional
fonts
array[string]
optional
flags.fonts
== 'Custom'geolocation
object
optional
flags.localization
== 'Custom'hardwareConcurrency
enum<integer>
optional
Allowed values:
24810121416
Example:
4
localization
object
optional
flags.localization
== 'Custom'; localization.timezone works on flags.localization
== 'Custom'restoreLastSession
boolean
optional
screen
object
optional
flags.screen
== 'Custom'userAgent
string
optional
webrtc
object
optional
flags.webrtc
== 'Custom'Example
{
"name": "testProfile",
"platform": "Windows",
"kernelMilestone": "132",
"autoClose": true,
"timedCloseSec": 30,
"headless": false,
"incognito": false,
"proxy": "http://admin:123456@127.0.0.1:8000",
"skipProxyChecking": true,
"fingerprint": {
"flags": {
"audio": "Noise",
"battery": "Masked",
"canvas": "Noise",
"clientRect": "Noise",
"fonts": "Masked",
"geolocation": "Custom",
"geolocationPopup": "Prompt",
"gpu": "Allow",
"localization": "Custom",
"screen": "Custom",
"speech": "Masked",
"timezone": "Custom",
"webgl": "Noise",
"webrtc": "Custom"
},
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.6998.45 Safari/537.36",
"deviceMemory": 8,
"hardwareConcurrency": 16,
"disableImageLoading": true,
"doNotTrack": true,
"localization": {
"language": "zh-HK",
"languages": [
"zh-HK",
"en-US",
"en"
],
"timezone": "Asia/Hong_Kong"
},
"screen": {
"width": 1280,
"height": 1024
},
"geolocation": {
"latitude": "31.2333",
"longitude": "121.469",
"accuracy": "603"
},
"webrtc": {
"publicIp": "111.111.111.111"
}
},
"startupUrls": [
"https://www.nstbrowser.io"
],
"args": {
"--remote-debugging-port": 34543,
"disable-backgrounding-occluded-windows": true
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8848/api/v2/browsers/once' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "testProfile",
"platform": "Windows",
"kernelMilestone": "132",
"autoClose": true,
"timedCloseSec": 30,
"headless": false,
"incognito": false,
"proxy": "http://admin:123456@127.0.0.1:8000",
"skipProxyChecking": true,
"fingerprint": {
"flags": {
"audio": "Noise",
"battery": "Masked",
"canvas": "Noise",
"clientRect": "Noise",
"fonts": "Masked",
"geolocation": "Custom",
"geolocationPopup": "Prompt",
"gpu": "Allow",
"localization": "Custom",
"screen": "Custom",
"speech": "Masked",
"timezone": "Custom",
"webgl": "Noise",
"webrtc": "Custom"
},
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.6998.45 Safari/537.36",
"deviceMemory": 8,
"hardwareConcurrency": 16,
"disableImageLoading": true,
"doNotTrack": true,
"localization": {
"language": "zh-HK",
"languages": [
"zh-HK",
"en-US",
"en"
],
"timezone": "Asia/Hong_Kong"
},
"screen": {
"width": 1280,
"height": 1024
},
"geolocation": {
"latitude": "31.2333",
"longitude": "121.469",
"accuracy": "603"
},
"webrtc": {
"publicIp": "111.111.111.111"
}
},
"startupUrls": [
"https://www.nstbrowser.io"
],
"args": {
"--remote-debugging-port": 34543,
"disable-backgrounding-occluded-windows": true
}
}'
Responses
π’200OK
application/json
Body
code
integer
optional
data
object (browser.RemoteDebuggingAddress)
optional
port
integer
optional
profileId
string
optional
proxy
string
optional
webSocketDebuggerUrl
string
optional
err
boolean
optional
msg
string
optional
Example
{
"code": 0,
"data": {
"port": 0,
"profileId": "string",
"proxy": "string",
"webSocketDebuggerUrl": "string"
},
"err": true,
"msg": "string"
}