Operators
Retrieves a list of all available operators
Authorizations
X-Api-KeystringRequired
X-Api-Key-IdstringRequired
Responses
200
List of all operators
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
/v1/operators/listAllGET /v1/operators/listAll HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
X-Api-Key-Id: YOUR_API_KEY
Accept: */*
{
"nodes": [
{
"numOfBrowsers": 3,
"info": {
"platform": "darwin",
"architecture": "arm64",
"freeMemory": 75415552,
"totalMemory": 68719476736,
"cpuModel": "Apple M3 Max",
"hostname": "Mac.lan"
},
"connectedAt": "2025-02-04T10:37:34.485Z",
"id": "P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6"
}
]
}Retrieves detailed information about a specific operator
Authorizations
X-Api-KeystringRequired
X-Api-Key-IdstringRequired
Path parameters
operatorIdstringRequiredExample:
P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6Responses
200
Operator information
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
/v1/operators/{operatorId}/infoGET /v1/operators/{operatorId}/info HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
X-Api-Key-Id: YOUR_API_KEY
Accept: */*
{
"numOfBrowsers": 3,
"info": {
"platform": "darwin",
"architecture": "arm64",
"freeMemory": 75415552,
"totalMemory": 68719476736,
"cpuModel": "Apple M3 Max",
"hostname": "Mac.lan"
},
"connectedAt": "2025-02-04T10:37:34.485Z",
"id": "P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6"
}Retrieves a random operator ID
Authorizations
X-Api-KeystringRequired
X-Api-Key-IdstringRequired
Responses
200
Random operator ID
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
/v1/operators/randomGET /v1/operators/random HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
X-Api-Key-Id: YOUR_API_KEY
Accept: */*
{
"operatorId": "P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6"
}Retrieves information about all operators and total browser count
Authorizations
X-Api-KeystringRequired
X-Api-Key-IdstringRequired
Responses
200
Operators information and browser count
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
/v1/operators/infoGET /v1/operators/info HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
X-Api-Key-Id: YOUR_API_KEY
Accept: */*
{
"nodes": [
{
"numOfBrowsers": 3,
"info": {
"platform": "darwin",
"architecture": "arm64",
"freeMemory": 75415552,
"totalMemory": 68719476736,
"cpuModel": "Apple M3 Max",
"hostname": "Mac.lan"
},
"connectedAt": "2025-02-04T10:37:34.485Z",
"id": "P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6"
}
],
"browsers": 3
}Last updated