curl --request GET \
--url https://api.example.com/api/v1/list-available-agents/ \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"visibility": "private"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Include system agents in the response
curl --request GET \
--url https://api.example.com/api/v1/list-available-agents/ \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"visibility": "private"
}
]