TaskNet
  • Welcome to TaskNet Documentation
  • ๐Ÿš€Getting Started
    • Authentication
      • API KEY
      • Environments
      • Fingerprints
    • Private Vs Public
    • QuickStart
  • Node Operators
    • Becoming a Node Operator
  • ๐Ÿ“•Features
    • Browser Sessions
      • Automation Script Support
      • Automation with API
      • Real-Time View
      • File Downloads, and Uploads
    • User Fingerprints
      • Proxy
      • Chrome Extensions
  • ๐Ÿ“šGuides
    • Running Automation Scripts
    • RealTime View
  • reference
    • Typescript SDK
      • NodeJS/Typescript
    • API Reference
      • Sessions
      • Enviornments
      • Fingerprints
      • Extensions
      • Page
      • Operators
  • What's New
    • Changelog
  • Socials
    • X
    • Github
    • Linkedin
    • Discord
Powered by GitBook
On this page
  1. reference
  2. API Reference

Page

If you selected api driver

PreviousExtensionsNextOperators

Last updated 3 months ago

  • POSTgoToPage
  • POSTExecute browser commands

goToPage

post
Authorizations
Path parameters
modestringRequired
Body
sessionUUIDstringRequired
urlstringRequired
Responses
200
Successful response
application/json
post
POST /{mode}/v1/page/goToPage HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 35

{
  "sessionUUID": "text",
  "url": "text"
}
200

Successful response

No content

Execute browser commands

post

Executes a sequence of browser automation commands within an active session. Supports various actions like clicking, typing, hovering, and more.

Authorizations
Body
sessionUUIDstring ยท uuidRequiredExample: 576626a7-2953-4790-8bc5-28a2e247ac03
post
POST /{mode}/v1/page/executeCommands HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 129

{
  "sessionUUID": "576626a7-2953-4790-8bc5-28a2e247ac03",
  "commands": [
    {
      "action": "Click",
      "x": 1,
      "y": 1,
      "clickCount": 1,
      "button": "left"
    }
  ]
}