Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
List of tools retrieved successfully
curl --request GET \
--url https://prod.featherhq.com/api/v1/pre-built-tools \
--header 'Authorization: Bearer <token>'{
"tools": [
{
"id": "<string>",
"slug": "<string>",
"name": "<string>",
"description": "<string>"
}
]
}List all pre-built tools
curl --request GET \
--url https://prod.featherhq.com/api/v1/pre-built-tools \
--header 'Authorization: Bearer <token>'{
"tools": [
{
"id": "<string>",
"slug": "<string>",
"name": "<string>",
"description": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of tools retrieved successfully
Show child attributes