Mind Topics

Mind Topics Resource

The Mind Topics resource allows you to retrieve an analysis of the key subjects discussed within a specific snapshot and the mind’s sentiment towards them.

Get Topic Analysis

Retrieves a summary of key topics and sentiment analysis for a specific snapshot.

1const analysis = await mindsim.mindTopics.get("snapshot-id-456");
2
3if (analysis.topicsSentimentSummary) {
4 analysis.topicsSentimentSummary.topics.forEach((topic: any) => {
5 console.log(`Topic: ${topic.name} | Sentiment: ${topic.sentiment}`);
6 });
7}

Parameters

ParameterTypeRequiredDescription
snapshotIdstringYesThe ID of the snapshot (mindAssessmentId) to analyze.

Response

1{
2 "personDetails": {
3 "id": "ac8ac8c4-05e9-4046-a919-4cbae2f49f22",
4 "slug": "sarah-connor",
5 "name": "Sarah Connor",
6 "mindDate": "2023-11-01T00:00:00Z",
7 "mindAssesssmentId": "snapshot-id-456"
8 },
9 "topicsSentimentSummary": {
10 "topics": [
11 {
12 "name": "Artificial Intelligence",
13 "sentiment": "Negative",
14 "relevance": 0.95
15 },
16 {
17 "name": "Survival Strategy",
18 "sentiment": "Positive",
19 "relevance": 0.88
20 },
21 {
22 "name": "Leadership",
23 "sentiment": "Neutral",
24 "relevance": 0.50
25 }
26 ]
27 },
28 "mindReasonerStopError": null
29}