# Convrgent AI Team Dynamics Analysis

> Convrgent AI Team Dynamics Analysis is a paid API for AI agents from convrgent.ai, paid per call via x402, $6/call, status unknown (last checked 2026-09-15).

Analyzes group personality composition to produce team dynamics insights including role recommendations, cognitive gaps, collaboration patterns, and hiring fit.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/multi/team
- Price: $6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-ee663376
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qQkXniWZyfjrTibGb4Fun

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability convrgent-ai-ee663376 -d '<json body>'
```

Example prompt: Can you run a team dynamics analysis on my 5-person product team — Sarah (INTJ), Marcus (ENFP), Priya (ISFJ), Tom (ENTP), and Lena (INFP) — and tell me what cognitive gaps we have, how well we'd collaborate, and what kind of hire would best complement the group?

## When to prefer this

Choose this endpoint when you need multi-person group-level analysis rather than individual profiling. Ideal for HR teams evaluating team composition before a hire, project managers assessing collaboration risk, or executives optimizing department structure. Prefer this over the single-profile psychological endpoint when the input is 2+ people and the output needed is group-level dynamics rather than individual trait scores.

## Known failure modes

- Insufficient profile data for one or more team members returns a validation error
- Unrecognized personality framework inputs may cause parsing errors
- Too few team members (e.g. single person) may not produce meaningful group analysis
- Missing required fields in member profiles returns a 400 bad request
- Payment failure via x402 protocol prevents endpoint execution

## How this service works

Team dynamics — group personality analysis, team composition assessment, role recommendations, cognitive gaps, collaboration patterns, team building insights, hiring fit, group optimization.

## Output

Returns a comprehensive team dynamics report including group personality composition breakdown, identified cognitive and behavioral gaps, role fit recommendations for each member, predicted collaboration patterns and friction points, and suggestions for team building or next hire profile to optimize the group.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "required": [
      "team"
     ],
     "properties": {
      "team": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "name"
        ],
        "properties": {
         "name": {
          "type": "string"
         },
         "birthData": {
          "type": "object",
          "required": [
           "year",
           "month",
           "day",
           "location"
          ],
          "properties": {
           "day": {
            "type": "integer"
           },
           "hour": {
            "type": "integer",
            "description": "Highly recommended. Defaults to 12 if omitted."
           },
           "year": {
            "type": "integer"
           },
           "month": {
            "type": "integer"
           },
           "minute": {
            "type": "integer",
            "description": "Defaults to 0 if omitted."
           },
           "latitude": {
            "type": "number",
            "description": "Optional override"
           },
           "location": {
            "type": "string",
            "description": "City and country. Coordinates auto-resolved."
           },
           "timezone": {
            "type": "number",
            "description": "Optional — auto-resolved from location"
           },
           "longitude": {
            "type": "number",
            "description": "Optional override"
           }
          }
         },
         "responses": {
          "type": "object"
         },
         "textSamples": {
          "type": "array",
          "items": {
           "type": "object",
           "required": [
            "text"
           ],
           "properties": {
            "text": {
             "type": "string"
            },
            "context": {
             "type": "string"
            }
           }
          }
         },
         "observations": {
          "type": "object"
         }
        }
       },
       "maxItems": 10,
       "minItems": 2
      },
      "context": {
       "type": "object"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "members": [
   {
    "name": "Alice",
    "role": "Analyst",
    "risks": [
     "..."
    ]
   }
  ],
  "dynamics": {
   "gaps": [
    "..."
   ],
   "strengths": [
    "..."
   ],
   "decisionStyle": "..."
  },
  "recommendations": [
   "..."
  ],
  "pairwiseHighlights": [
   "..."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-ee663376/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
