POST
/
ai-tools
Create AI Tool
curl --request POST \
  --url https://api.wacht.dev/ai-tools \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "type": "api",
  "config": {}
}'
{
  "id": "<string>",
  "name": "Web Scraper Tool",
  "description": "<string>",
  "type": "api",
  "config": {
    "endpoint": "<string>",
    "method": "GET",
    "headers": {},
    "parameters": [
      {
        "name": "<string>",
        "type": "<string>",
        "required": true
      }
    ]
  },
  "is_active": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication using the Authorization header

Body

application/json

Response

AI tool created successfully

The response is of type object.