The agent ID
Copy
curl -X GET https://api-be.atthene.com/api/v1/agent/550e8400-e29b-41d4-a716-446655440000/ \
-H "x-api-key: YOUR_API_KEY"
Response
Returns the complete agent configuration:Copy
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"agent_key": "customer_support_agent",
"name": "Customer Support Agent",
"architecture": "llm_agent",
"entry_point": "main",
"is_public": false,
"is_shared": false,
"origin_url": null,
"owner": "user_123",
"company": "company_456",
"system_config": {
"name": "Customer Support Agent",
"agent_type": "llm_agent",
"system_prompt": "You are a helpful customer support agent...",
"llm_config": {
"model": "gpt-4o",
"temperature": 0.7
},
"tools": ["tavily_search"],
"knowledge_bases": [...]
},
"version_number": "1.0.0",
"config_hash": "a1b2c3d4e5f6",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:30:00Z"
}