iDEFi.AI Docs
HomeDataAgentsQuantumDiscord
  • Welcome to iDEFi.AI
  • Introduction
  • api
    • DATA
      • Metrics
        • Specs
      • Narratives
        • Specs
      • Visualizations
        • Specs
      • Full report
        • Specs
    • AGENTIC
      • Tasks
        • Summary
        • Assign
        • Details
        • UpdateStatus
        • Cancel
        • Specs
      • Agents
        • Details
        • Specs
      • Squads
        • Summary
        • Details
        • Specs
      • Syndicates
        • Summary
        • Details
        • Specs
      • Deploy dApp
        • Status
        • Specs
      • Marketplace
        • Listings
        • AddItem
        • Item
        • Specs
      • Industry Cases
        • Specs
    • QUANTUM
      • Agents
        • Agent
        • Squad
        • Syndicate
        • Specs
      • Gaming
        • Specs
      • Finance
        • Specs
      • Logistics
        • Specs
      • Education
        • Specs
      • Healthcare
        • Specs
      • Social Media
        • Specs
      • Supply Chain
        • Agent
        • Specs
  • WHITEPAPERS
    • iDEFi.AI
    • Q.iDEFi.AI
    • iNFA.iDEFi.AI
      • Tokenomics
      • Security
Powered by GitBook
On this page
  1. api
  2. AGENTIC
  3. Squads

Details

PreviousSummaryNextSyndicates

Get detailed squad info

get

Returns full details for a specific squad, including the complete list of agents (with individual role details) and aggregated squad metrics.

Path parameters
squadIdstringRequired

ID of the squad

Responses
200
Detailed squad information
application/json
404
Squad not found
get
GET /api/squads/{squadId}/details HTTP/1.1
Host: infa.idefi.ai
Accept: */*
{
  "id": "squad_001",
  "name": "Alpha Squad",
  "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"
          ]
        }
      ]
    }
  ],
  "stackedRoles": [
    {
      "roleName": "Scout",
      "primaryFunction": "Market analysis",
      "skills": [
        "Predictive modeling"
      ]
    },
    {
      "roleName": "Builder",
      "primaryFunction": "Workflow orchestration",
      "skills": [
        "System integration"
      ]
    }
  ],
  "aggregatedMetrics": {
    "totalExperiencePoints": 7500,
    "averageUptime": 99.5,
    "overallCompletionRate": 94.2
  }
}