curl --request GET \
--url https://app.octavehq.com/api/v2/agents/types \
--header 'api_key: <api-key>'
{
"_metadata": {
"usage": 0,
"requestId": "requestId",
"message": "message",
"timestamp": "2021-01-01T00:00:00.000Z"
},
"total": 9,
"data": [
{
"type": "PROSPECTOR",
"name": "<string>",
"description": "<string>",
"category": "<string>"
}
]
}
List all available agent types with their metadata
curl --request GET \
--url https://app.octavehq.com/api/v2/agents/types \
--header 'api_key: <api-key>'
{
"_metadata": {
"usage": 0,
"requestId": "requestId",
"message": "message",
"timestamp": "2021-01-01T00:00:00.000Z"
},
"total": 9,
"data": [
{
"type": "PROSPECTOR",
"name": "<string>",
"description": "<string>",
"category": "<string>"
}
]
}
List agent types successful
The response is of type object
.