cURL
curl --request GET \ --url https://api.example.com/api/v1/agents
{ "success": true, "data": { "total": 2, "agents": [ { "name": "dify", "type": "DifyAgent", "module": "agent.dify", "capabilities": { "streaming": true, "file_upload": true } }, { "name": "fastgpt", "type": "FastGPTAgent", "module": "agent.fastgpt", "capabilities": { "streaming": true, "file_upload": true } } ] } }
curl -X GET 'https://your-domain.com/api/v1/agents'
dify
fastgpt
Show child attributes