GET
/
orchestrate
/
agents
curl --request GET \
  --url http://localhost/api/v1/orchestrate/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tenant_id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "instructions": "<string>",
    "tools": [],
    "collaborators": [],
    "knowledge_base": [],
    "llm": "<string>",
    "style": "default",
    "supported_apps": [
      "slack/askhr"
    ],
    "created_by": "<string>",
    "created_on": "2023-11-07T05:31:56Z",
    "updated_by": "<string>",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_by": "<string>",
    "deleted_at": "2023-11-07T05:31:56Z",
    "environments": [],
    "agent_mapping": {},
    "hidden": true,
    "display_name": "<string>",
    "structured_output": {},
    "custom_join_tool": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

include_hidden
boolean
default:false
ids
string[] | null
names
string[] | null

Response

200
application/json

Successful Response

The response is of type ListAgent · object[].