Last updated 3 months ago
Retrieves a list of all available operators
GET /v1/operators/listAll HTTP/1.1 Host: api.tasknet.co X-Api-Key: YOUR_API_KEY Accept: */*
List of all operators
{ "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
P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6
GET /v1/operators/{operatorId}/info HTTP/1.1 Host: api.tasknet.co X-Api-Key: YOUR_API_KEY Accept: */*
Operator information
{ "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
GET /v1/operators/random HTTP/1.1 Host: api.tasknet.co X-Api-Key: YOUR_API_KEY Accept: */*
Random operator ID
{ "operatorId": "P1U2GgteHXggxS82Br9N9w93N6m1::e1dc75db-2c15-4814-a375-849714079fc6" }
Retrieves information about all operators and total browser count
GET /v1/operators/info HTTP/1.1 Host: api.tasknet.co X-Api-Key: YOUR_API_KEY Accept: */*
Operators information and browser count
{ "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 }