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
headerrequired

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

Response

200 - application/json
_id
string
task
string
required

Name of the project associated with this tool

name
string
required
description
string
parameters
object
required

These can be function call params or plugin call params

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