Get a list of all AI tools
curl --request GET \
--url https://api.wacht.dev/ai-tools \
--header 'Authorization: Bearer <token>'
{
"total": 100,
"page": 1,
"per_page": 20,
"total_pages": 5,
"data": [
{
"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"
}
]
}
JWT Bearer token authentication using the Authorization header
api
, function
, webhook
Successful response
The response is of type object
.
curl --request GET \
--url https://api.wacht.dev/ai-tools \
--header 'Authorization: Bearer <token>'
{
"total": 100,
"page": 1,
"per_page": 20,
"total_pages": 5,
"data": [
{
"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"
}
]
}