cURL
curl --request GET \ --url https://api.xpander.ai/v1/agents/full \ --header 'x-api-key: <api-key>'
{ "items": [ { "name": "<string>", "organization_id": "<string>", "webhook_url": "<string>", "id": "<string>", "unique_name": "<string>", "origin_template": "<string>", "delegation_end_strategy": "return-to-start", "environment_id": "<string>", "sub_agents_continuous_thread": true, "deployment_type": "serverless", "created_by_prompt": "<string>", "prompts": [], "is_latest": false, "has_pending_changes": false, "connectivity_details": {}, "framework": "agno", "description": "", "tools": [], "icon": "🚀", "avatar": "male-avatar", "source_nodes": [], "attached_tools": [], "access_scope": "personal", "instructions": { "role": [], "goal": [], "general": "" }, "oas": {}, "graph": [], "llm_settings": [], "status": "ACTIVE", "knowledge_bases": [], "version": 1, "created_by": "<string>", "created_at": "2023-11-07T05:31:56Z", "type": "manager", "delegation_type": "router", "delegation_memory_strategy": "summarization", "is_ai_employee": false, "using_nemo": false, "deletable": true, "model_provider": "openai", "model_name": "gpt-4.1", "llm_api_base": "<string>", "output_format": "markdown", "output_schema": {}, "llm_credentials_key": "<string>", "llm_credentials_key_type": "xpander", "llm_credentials": { "name": "<string>", "value": "<string>", "description": "<string>" }, "expected_output": "", "agno_settings": { "session_storage": true, "agent_memories": false, "agentic_culture": false, "user_memories": false, "agentic_memory": false, "session_summaries": false, "num_history_runs": 3, "max_tool_calls_from_history": 0, "tool_call_limit": 0, "coordinate_mode": true, "pii_detection_enabled": false, "pii_detection_mask": true, "prompt_injection_detection_enabled": false, "openai_moderation_enabled": false, "reasoning_tools_enabled": true, "tool_calls_compression": { "enabled": true, "instructions": "", "threshold": 3 } }, "on_prem_event_streaming": true, "prompts_caching_enabled": false, "is_generalist": false } ], "total": 123, "page": 123, "per_page": 123, "total_pages": 123 }
Retrieve a paginated list of AI agents with complete configuration details
Show Agent Object
curl -X GET -H "x-api-key: YOUR_API_KEY" \ "https://api.xpander.ai/v1/agents/full?page=1&per_page=2"
{ "items": [ { "id": "0045cf07-8af6-4c69-8d13-0a13c631a5d0", "unique_name": "lavender-wolverine", "name": "DevOps AI Agent", "icon": "🚀", "avatar": "male-avatar", "status": "ACTIVE", "organization_id": "91fbe9bc-35b3-41e8-b59d-922fb5a0f031", "deployment_type": "container", "framework": "agno", "model_provider": "openai", "model_name": "gpt-4.1", "type": "manager", "delegation_type": "router", "created_at": "2025-08-22T01:45:30.341088Z", "instructions": { "role": [ "users can't access your files so upload the files and use markdown when comment with public link.", "Don't stop until complete all tools are valid.", "generate_diagram can fail, retry with different code" ], "goal": [], "general": "AI DevOps" }, "tools": [], "knowledge_bases": [], "deletable": true, "using_nemo": false, "source_nodes": [ { "id": "283a165d-c8d7-4b2b-8d38-5d479ffef236", "type": "assistant", "targets": null, "metadata": {} } ], "attached_tools": [], "access_scope": "organizational", "graph": [] } ], "total": 24, "page": 1, "per_page": 2, "total_pages": 12 }
GET /v1/agents
API Key for authentication
Page number (starting from 1)
x >= 1
Items per page (max 50)
1 <= x <= 50
Successful Response
Show child attributes
Was this page helpful?