Profiles
A profile is the scored output of a completed MNTEST assessment — 9 Nature scores and 10 Multiple Intelligence scores, plus narrative descriptions.
Retrieve a profile
GET /v1/nature/subjects/{subject_id}/profile
const profile = await client.nature.profiles.get(subject.id);
// or with French narratives:
const profileFR = await client.nature.profiles.get(subject.id, { language: 'fr' });
Returns the most recent completed profile for the subject. If no completed assessment exists, returns 404.
Profile shape
{
"id": "prf_abc123",
"object": "profile",
"subject_id": "sub_xyz789",
"scores": {
"natures": {
"protective": 0.72,
"educative": 0.45,
"administrative": 0.31,
"creative": 0.88,
"healing": 0.66,
"entertaining": 0.41,
"providing": 0.55,
"entrepreneurial": 0.78,
"adventurous": 0.62
},
"intelligences": {
"gross_bodily": 0.42,
"fine_bodily": 0.51,
"interpersonal": 0.79,
"logical": 0.81,
"linguistic": 0.74,
"graphic_visual": 0.46,
"spatial_visual": 0.55,
"musical": 0.38,
"intrapersonal": 0.83,
"naturalistic": 0.40
}
},
"narratives": {
"primary_natures": [
{ "nature": "creative", "description": "..." }
],
"primary_intelligences": [
{ "intelligence": "intrapersonal", "description": "..." }
]
},
"language": "en",
"livemode": false,
"created_at": "2026-04-21T10:35:00Z"
}
Score interpretation
Scores are 0.0–1.0 and represent expression strength within the individual's own range — they are not population percentiles. A score of 0.88 on creative means Creative is highly expressed relative to this person's other Natures; it does not mean they score in the 88th percentile of the general population.
The narratives.primary_natures and primary_intelligences arrays contain descriptive text for the highest-scoring dimensions.
Languages
Pass ?language=fr for French narrative content. If no French profile exists (because the assessment was run in English), the API falls back to English narratives. The language field in the response reflects the actual language returned.