curl --request GET \
--url https://prod.featherhq.com/api/v1/tools \
--header 'Authorization: Bearer <token>'{
"tools": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"structure": {
"url": "<string>",
"variables": [
{
"name": "<string>",
"type": "str",
"description": "<string>",
"required": false
}
],
"method": "GET",
"headers": {},
"body": {},
"timeout": 30
},
"speech": "<string>",
"slug": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}List all tools with cursor-based pagination
curl --request GET \
--url https://prod.featherhq.com/api/v1/tools \
--header 'Authorization: Bearer <token>'{
"tools": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"structure": {
"url": "<string>",
"variables": [
{
"name": "<string>",
"type": "str",
"description": "<string>",
"required": false
}
],
"method": "GET",
"headers": {},
"body": {},
"timeout": 30
},
"speech": "<string>",
"slug": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of tools retrieved successfully
Show child attributes
Show child attributes
The API endpoint URL
HTTP method (GET, POST, PATCH, PUT, DELETE)
GET, POST, PATCH, PUT, DELETE Request timeout in seconds