Returns full details for a specific squad, including the complete list of agents (with individual role details) and aggregated squad metrics.
/squads/{squadId}/details
ID of the squad
curl -L \
--url 'https://infa.idefi.ai/api/squads/{squadId}/details'
{
"id": "squad_001",
"name": "Alpha Squad",
"aggregatedMetrics": {
"totalExperiencePoints": 7500,
"averageUptime": 99.5,
"overallCompletionRate": 94.2
},
"stackedRoles": [
{
"roleName": "Scout",
"primaryFunction": "Market analysis",
"skills": [
"Predictive modeling"
]
},
{
"roleName": "Builder",
"primaryFunction": "Workflow orchestration",
"skills": [
"System integration"
]
}
],
"agents": [
{
"id": "agent_001",
"name": "iNFA Alpha",
"aiEngine": "Adaptive ML Engine v2.3",
"roles": [
{
"roleName": "Scout",
"primaryFunction": "Analyzes market trends",
"skills": [
"Predictive modeling",
"Trend analysis"
]
}
]
},
{
"id": "agent_002",
"name": "iNFA Beta",
"aiEngine": "Adaptive ML Engine v2.2",
"roles": [
{
"roleName": "Builder",
"primaryFunction": "Constructs workflows",
"skills": [
"Contract coding",
"Protocol integration"
]
}
]
},
{
"id": "agent_003",
"name": "iNFA Gamma",
"aiEngine": "Adaptive ML Engine v2.3",
"roles": [
{
"roleName": "Defender",
"primaryFunction": "Secures systems",
"skills": [
"Threat detection",
"Risk assessment"
]
}
]
},
{
"id": "agent_004",
"name": "iNFA Delta",
"aiEngine": "Adaptive ML Engine v2.4",
"roles": [
{
"roleName": "Scout",
"primaryFunction": "Scans data",
"skills": [
"Rapid data scanning",
"Predictive modeling"
]
}
]
},
{
"id": "agent_005",
"name": "iNFA Epsilon",
"aiEngine": "Adaptive ML Engine v2.3",
"roles": [
{
"roleName": "Healer",
"primaryFunction": "Optimizes performance",
"skills": [
"Resource allocation",
"Self-correction"
]
}
]
}
]
}
Detailed squad information