# convrgent.ai Psychological Profile Assessment

> convrgent.ai Psychological Profile Assessment is a paid API for AI agents from convrgent.ai, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Generates a comprehensive 12-dimension psychological profile including openness, conscientiousness, risk tolerance, conflict style, emotional intelligence, autonomy, and adaptability with psychometric clustering.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/psych
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-fb83ce9a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WCTCtsX-ltlWV4h3XbK3z

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-fb83ce9a -d '<json body>'
```

Example prompt: Run a full 12-dimension psychological profile on Alex — here are several text samples and conversation excerpts from them — I want to understand their risk tolerance, conflict style, emotional intelligence, and how they cluster psychometrically.

## When to prefer this

Use this endpoint when you need a comprehensive multi-dimensional psychological portrait (12 dimensions) rather than a single trait score. Prefer this over the single_psych_dimension sibling endpoint when you need the full behavioral picture including risk tolerance, conflict style, and psychometric clustering in one call. Choose this over MBTI or astrology siblings when you want empirically-grounded behavioral dimensions rather than typological frameworks.

## Known failure modes

- Insufficient input data — not enough text or behavioral signals to generate a reliable profile
- Invalid or malformed request body — missing required fields
- Profile not found in vault if referencing an existing stored profile
- Rate limiting or payment failure via x402 protocol
- Low-confidence clustering if behavioral signals are ambiguous or contradictory

## How this service works

Psychological profile — 12 behavioral dimensions including openness, conscientiousness, risk tolerance, conflict style, emotional intelligence, autonomy, adaptability. Personality traits assessment with psychometric clustering.

## Output

Returns a structured psychological profile with scores or assessments across 12 behavioral dimensions: openness, conscientiousness, risk tolerance, conflict style, emotional intelligence, autonomy, adaptability, and additional psychometric factors, along with a cluster classification placing the individual in a personality archetype group.

## Example request

```json
{
 "frame_type": "delay",
 "constraints": [
  "Cannot reduce scope",
  "Must maintain code quality standards",
  "Team is already at full capacity"
 ],
 "information": "We need to implement a new project deadline that is 2 weeks earlier than originally planned",
 "desired_outcome": "zero-qa@agentmail.to",
 "audience_context": "software development team members who have been working on the project for 3 months"
}
```

## 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": {
     "properties": {
      "natal": {
       "type": "object"
      },
      "textSamples": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "text"
        ],
        "properties": {
         "text": {
          "type": "string"
         },
         "context": {
          "type": "string"
         }
        }
       }
      },
      "demographics": {
       "type": "object"
      },
      "observations": {
       "type": "object"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cluster": "analytical-explorer",
  "confidence": 0.72,
  "dimensions": {
   "openness": {
    "score": 0.82,
    "confidence": 0.75
   },
   "riskTolerance": {
    "score": 0.45,
    "confidence": 0.65
   },
   "conscientiousness": {
    "score": 0.71,
    "confidence": 0.7
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-fb83ce9a/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)
