🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
인증된 조직의 에이전트 목록을 조회합니다. 목록 항목은 요약 정보이며, data, flow_data, 버전 스냅샷은 단건 조회에서 확인합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/agents \
--header 'Authorization: Bearer <token>'{
"items": [
{
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"type": "single_prompt",
"created_at": 123,
"updated_at": 123,
"production_version": "v1"
}
],
"total_count": 123,
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.
에이전트 이름 일부로 검색합니다.
반복 가능한 에이전트 유형 필터입니다. 예: ?type=single_prompt&type=flow.
정렬 방향입니다. 허용값은 asc, desc입니다.
asc, desc 이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/agents \
--header 'Authorization: Bearer <token>'{
"items": [
{
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"type": "single_prompt",
"created_at": 123,
"updated_at": 123,
"production_version": "v1"
}
],
"total_count": 123,
"next_cursor": "<string>"
}