cURL
curl --request GET \ --url https://api.example.com/agents \ --header 'Authorization: Bearer <token>'
{ "items": [ { "agent_id": 123, "owner_id": 123, "name": "<string>", "system_prompt": "<string>", "is_active": true, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "role_description": "<string>", "template_source": "<string>" } ], "total": 123, "page": 123, "size": 123 }
내(owner_id=me.user_id) 에이전트 목록을 페이징 조회.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1 <= x <= 100
x >= 0
에이전트 이름/역할 설명 검색 키워드
Successful Response
Show child attributes