Skip to main content
POST
/
v1
/
tools
Create Tool
curl --request POST \
  --url https://api.anchorbrowser.io/v1/tools \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "application_id": "<string>",
  "task_id": "<string>",
  "task_version": "<string>",
  "browser_configuration": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Body

application/json
name
string
required
Minimum string length: 1
description
string
application_id
string<uuid>

Application (connection) to associate the tool with.

taskId
string

Existing task to back the tool. If omitted, a task is imported.

hektor_project_id
string<uuid>
browser_configuration
object

Default browser session configuration for the tool.

human_intervention
boolean
default:false

Response

Tool created successfully.

id
string
name
string
description
string
application_id
string | null
task_id
string
task_version
string
browser_configuration
object
created_at
string<date-time>
updated_at
string<date-time>