GET
/
tools
curl --request GET \
  --url https://api.honeyhive.ai/tools \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "<string>",
    "task": "<string>",
    "name": "<string>",
    "description": "<string>",
    "parameters": {},
    "tool_type": "function"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
Successfully retrieved the list of tools
task
string
required

Name of the project associated with this tool

name
string
required
parameters
object
required

These can be function call params or plugin call params

tool_type
enum<string>
required
Available options:
function,
tool
_id
string
description
string