Psychometrics Resource

Psychometrics

The Psychometrics resource allows you to retrieve deep analytical insights derived from a specific Snapshot.

Retrieve Psychometrics

Get the full psychometric profile for a specific snapshot using its ID.

1const analysis = await mindsim.psychometrics.get("snapshot-id-uuid");

Parameters

ParameterTypeRequiredDescription
snapshotIdstringYesThe ID of the processed snapshot (mindAssessmentId).

Response

Returns a GetPsychometricsResponse object containing the breakdown of the analysis.

1{
2 "personDetails": {
3 "id": "ac8ac8c4...",
4 "name": "Sarah Connor",
5 "slug": "sarah-connor",
6 "mindDate": "2023-11-01",
7 "mindAssesssmentId": "a0eebc99..."
8 },
9 "dimensionAnalysis": {
10 "openness": 0.85,
11 "conscientiousness": 0.92,
12 "extraversion": 0.45,
13 "agreeableness": 0.30,
14 "neuroticism": 0.60
15 },
16 "topicsSentimentSummary": {
17 "technology": "negative",
18 "leadership": "positive",
19 "survival": "neutral"
20 },
21 "metaAnalysis": {
22 "communicationStyle": "Direct and urgent",
23 "cognitivePattern": "Analytical and threat-focused"
24 },
25 "mindReasonerStopError": null
26}