Skip to content

Teams API

The Teams API provides access to 17+ specialized AI agent teams for various business domains.

Endpoints

List Teams

GET /api/v1/teams

Query Parameters: - category (optional) - Filter by category - enhancement (optional) - Filter by enhancement level

Response:

{
  "success": true,
  "teams": [
    {
      "id": "healthcare_uc_team_v2",
      "name": "Universal Healthcare Team",
      "category": "healthcare", 
      "description": "Medical care coordination and patient management",
      "enhancement": "MASTER_LEVEL",
      "linesOfCode": 1200,
      "estimatedTime": "3-8 minutes",
      "costEstimate": 0.85,
      "agents_count": 6,
      "status": "available"
    }
  ],
  "total": 17,
  "categories": {
    "healthcare": 2,
    "legal": 2,
    "business": 3,
    "technology": 2,
    "finance": 2
  }
}

Deploy Team

POST /api/v1/teams/{team_id}/deploy

Request Body:

{
  "configuration": {},
  "environment": "production",
  "priority": "normal"
}

Response:

{
  "success": true,
  "deploymentId": "deploy_789",
  "teamId": "healthcare_uc_team_v2",
  "status": "deploying",
  "estimatedCompletion": "2025-08-12T14:08:00Z",
  "deploymentUrl": "https://team-healthcare-uc.unacode.internal"
}

Get Deployment Status

GET /api/v1/teams/deployment/{deployment_id}/status

Response:

{
  "success": true,
  "deploymentId": "deploy_789",
  "status": "active",
  "health": "healthy",
  "uptime": "2h 15m",
  "requestsProcessed": 1247,
  "averageResponseTime": 125.3,
  "activeAgents": 6
}

Available Teams by Category

🏥 Healthcare

  • Universal Healthcare Team - Patient care coordination
  • Medical Research Team - Clinical data analysis
  • Legal Documentation Team - Contract review and compliance
  • Estate & Legacy Planning - Asset and will management

💼 Business

  • SMB Operations Team - Small business management
  • Project Management Team - Project coordination
  • Freelancer Management - Client and proposal management

💰 Finance

  • Personal Finance Team - Budget and investment planning
  • Financial Analytics Team - Market analysis and reporting

🏗️ Construction & Real Estate

  • Construction Project Team - Project planning and safety
  • Real Estate Team - Property analysis and transactions

🌾 Agriculture

  • Agricultural Intelligence - Crop management and optimization

🍽️ Restaurant & Retail

  • Restaurant Operations - Menu and staff management
  • Retail Operations - Inventory and sales optimization

🎓 Education

  • Education & Tutoring - Curriculum and assessment

🛒 E-commerce

  • E-commerce Operations - Product and inventory management

🔧 Technology

  • Systems Integration - API connectivity and data migration
  • Agent Idea Generator - AI agent concept development

🏛️ Nonprofit

  • Nonprofit Management - Fundraising and program management

🎉 Life Events

  • Life Events Planning - Major transition coordination

Deployment Status

  • deploying - Team deployment in progress
  • active - Team successfully deployed and running
  • stopped - Team deployment stopped
  • failed - Deployment failed
  • maintenance - Under maintenance

Team Configuration

Each team accepts custom configuration parameters:

{
  "configuration": {
    "aiModel": "gpt-4",
    "responseMode": "detailed",
    "integrations": ["slack", "email"],
    "customParameters": {}
  }
}

Generated on 2025-08-12 14:48:04