MN Insights (MNTEST)
MN Insights is the free assessment layer of the Multiple Natures framework. It administers 76 items and returns a full alignment profile: scores across 9 Natures and 10 Intelligences, a top nature, and per-dimension breakdowns.
Base path: /assessments
Endpoints
Get assessment items
Retrieve the full set of 76 MNTEST items. No authentication required.
GET /assessments/itemsResponse
[ { "id": 1, "text": "I find it easy to adapt my approach to fit the people I'm working with.", "dimension": "nature", "nature": "Adapting" }]Items are returned in a fixed, randomisation-safe order. Present them to the user in this order or shuffle client-side.
Response fields
| Field | Type | Description |
|---|---|---|
id | integer | Stable item identifier |
text | string | Item statement (rated 1–5 by the user) |
dimension | string | "nature" or "intelligence" |
nature / intelligence | string | Which nature or intelligence this item loads on |
Submit responses
Submit the user’s responses. Requires an active session.
POST /assessments/submitCookie: mn_session=...Content-Type: application/jsonRequest body
{ "responses": [ { "item_id": 1, "value": 4 }, { "item_id": 2, "value": 2 } ]}All 76 items must be included. value is an integer from 1 to 5.
Response
{ "ok": true, "assessment_id": 1847}Get latest results
Retrieve the most recent scored assessment for the current user. Requires an active session.
GET /assessments/latestCookie: mn_session=...Response
{ "assessment_id": 1847, "completed_at": "2026-04-29T18:00:00Z", "top_nature": "Creating", "natures": { "Creating": 82, "Adapting": 71, "Providing": 68, "Performing": 65, "Analyzing": 60, "Organizing": 55, "Advising": 52, "Leading": 48, "Innovating": 44 }, "intelligences": { "Linguistic": 79, "Logical": 73, "Spatial": 68, "Musical": 65, "Bodily": 60, "Naturalist": 57, "Interpersonal": 54, "Intrapersonal": 51, "Existential": 48, "Spiritual": 43 }}Scores are normalised to 0–100.
Nature order
The 9 Natures in canonical order:
- Creating
- Innovating
- Performing
- Advising
- Organizing
- Providing
- Adapting
- Analyzing
- Leading