{"title":"User- & Minds-API","slug":"user","category":"api","summary":"Kontoverwaltung — registrieren, einloggen, Minds erstellen, Minds auflisten, Minds löschen. JWT-geschützt.","audience":["human","llm"],"tags":["api","user","account","minds","jwt"],"difficulty":"beginner","updated":"2026-06-27","word_count":279,"read_minutes":1,"llm_context":"Auth: JWT (from /register or /login)\nRegister: POST /register { email, password, display_name? } → returns JWT\nLogin: POST /login { email, password } → returns JWT\nCreate mind: POST /minds { name, description? } → returns mind_key (shown once!)\nList minds: GET /minds\nDelete mind: DELETE /minds/:id (irreversible — deletes all memories!)\nJWT expires after 7 days. Mind Key never expires.\nMind Key is shown only once at creation — save it permanently.\n","lang":"de","translated":true,"requested_lang":"de","content_markdown":"\n# User- & Minds-API\n\nDie User- & Minds-API behandelt die Kontoverwaltung. Diese Endpunkte verwenden\nJWT-Authentifizierung (nicht Mind Keys), weil sie auf Kontoebene arbeiten, nicht\nauf Mind-Ebene.\n\n## Authentifizierungs-Endpunkte\n\n### POST /register\n\nEin neues Nutzerkonto anlegen.\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"you@example.com\",\n    \"password\": \"your-secure-password\",\n    \"display_name\": \"Michael\"\n  }'\n```\n\nAntwort:\n\n```json\n{\n  \"jwt\": \"eyJhbGci...\",\n  \"user\": {\n    \"id\": \"u_abc123\",\n    \"email\": \"you@example.com\",\n    \"display_name\": \"Michael\",\n    \"created_at\": \"2026-06-27T...\"\n  }\n}\n```\n\n### POST /login\n\nBei einem bestehenden Konto einloggen.\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/login \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"you@example.com\",\n    \"password\": \"your-secure-password\"\n  }'\n```\n\nAntwort: wie bei `/register`.\n\n## Minds-Endpunkte\n\n### POST /minds\n\nEinen neuen Mind anlegen. Liefert den Mind Key — **sofort speichern**, er wird\nnur einmal angezeigt.\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/minds \\\n  -H \"Authorization: Bearer YOUR_JWT\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"Work Mind\",\n    \"description\": \"Job-related memories\"\n  }'\n```\n\nAntwort:\n\n```json\n{\n  \"id\": \"m_xyz789\",\n  \"name\": \"Work Mind\",\n  \"description\": \"Job-related memories\",\n  \"mind_key\": \"mk_aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789\",\n  \"created_at\": \"2026-06-27T...\"\n}\n```\n\n> [!CRITICAL]\n> Der `mind_key` wird nur einmal angezeigt. Wenn du ihn verlierst, kannst du ihn\n> nicht wiederherstellen — du musst den Mind löschen und einen neuen anlegen\n> (wodurch alle gespeicherten Memories verloren gehen).\n\n### GET /minds\n\nAlle Minds des aktuellen Nutzers auflisten.\n\n```bash\ncurl -H \"Authorization: Bearer YOUR_JWT\" \\\n     https://synapse.schaefer.zone/minds\n```\n\nAntwort:\n\n```json\n{\n  \"minds\": [\n    {\n      \"id\": \"m_xyz789\",\n      \"name\": \"Work Mind\",\n      \"description\": \"Job-related memories\",\n      \"created_at\": \"2026-06-27T...\",\n      \"memory_count\": 142,\n      \"last_activity\": \"2026-06-27T...\"\n    }\n  ]\n}\n```\n\n### DELETE /minds/:id\n\nEinen Mind dauerhaft löschen.\n\n```bash\ncurl -X DELETE -H \"Authorization: Bearer YOUR_JWT\" \\\n     https://synapse.schaefer.zone/minds/m_xyz789\n```\n\n> [!WARNING]\n> Das Löschen eines Minds ist **unumkehrbar**. Alle Memories, Tasks,\n> Chat-Verläufe und Scripts in diesem Mind gehen dauerhaft verloren. Exportiere\n> vorher via `GET /memory/mind-export`, falls du ein Backup brauchst.\n\n## Multi-Mind-Pattern\n\nDie meisten Nutzer profitieren von mehreren Minds, um Kontexte getrennt zu\nhalten:\n\n```bash\n# Create minds for different contexts\ncurl -X POST .../minds -d '{\"name\": \"work\", \"description\": \"Job\"}'\n# → mind_key: mk_work...\n\ncurl -X POST .../minds -d '{\"name\": \"personal\", \"description\": \"Personal life\"}'\n# → mind_key: mk_personal...\n\ncurl -X POST .../minds -d '{\"name\": \"project-synapse\", \"description\": \"Synapse dev\"}'\n# → mind_key: mk_synapse...\n```\n\nVerwende in verschiedenen LLM-Sessions unterschiedliche Mind Keys, um Kontexte\ngetrennt zu halten.\n\n## Kontosicherheit\n\n### Passwort-Anforderungen\n\n- Mindestens 6 Zeichen\n- Kein Maximum (verwende einen Passwort-Manager)\n- Als bcrypt-Hash gespeichert (niemals im Klartext)\n\n### JWT-Ablauf\n\nJWTs laufen nach **7 Tagen** ab. Wenn sie abgelaufen sind, rufe einfach wieder\n`/login` auf.\n\n### Mind-Key-Sicherheit\n\nMind Keys laufen nie ab. Wenn ein Mind Key kompromittiert wurde:\n\n1. Lege einen neuen Mind via `POST /minds` an\n2. Aktualisiere deine LLM-Konfiguration mit dem neuen Mind Key\n3. Lösche den kompromittierten Mind via `DELETE /minds/:id`\n\n## Nächste Schritte\n\n- [Authentifizierung](/docs/getting-started/authentication) — vollständiger Auth-Guide\n- [Mind Key vs JWT](/docs/getting-started/mind-key-vs-jwt) — Entscheidungsleitfaden\n- [Sharing-API](/docs/api/user) — Minds mit anderen Nutzern teilen\n","content_html":"<h1>User- &amp; Minds-API</h1>\n<p>Die User- &amp; Minds-API behandelt die Kontoverwaltung. Diese Endpunkte verwenden\nJWT-Authentifizierung (nicht Mind Keys), weil sie auf Kontoebene arbeiten, nicht\nauf Mind-Ebene.</p>\n<h2>Authentifizierungs-Endpunkte</h2>\n<h3>POST /register</h3>\n<p>Ein neues Nutzerkonto anlegen.</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/register \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;email&quot;: &quot;you@example.com&quot;,\n    &quot;password&quot;: &quot;your-secure-password&quot;,\n    &quot;display_name&quot;: &quot;Michael&quot;\n  }&#x27;</span></code></pre><p>Antwort:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;jwt&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;eyJhbGci...&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;user&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">{</span>\n    <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;u_abc123&quot;</span><span class=\"hljs-punctuation\">,</span>\n    <span class=\"hljs-attr\">&quot;email&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;you@example.com&quot;</span><span class=\"hljs-punctuation\">,</span>\n    <span class=\"hljs-attr\">&quot;display_name&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Michael&quot;</span><span class=\"hljs-punctuation\">,</span>\n    <span class=\"hljs-attr\">&quot;created_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span>\n  <span class=\"hljs-punctuation\">}</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><h3>POST /login</h3>\n<p>Bei einem bestehenden Konto einloggen.</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/login \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;email&quot;: &quot;you@example.com&quot;,\n    &quot;password&quot;: &quot;your-secure-password&quot;\n  }&#x27;</span></code></pre><p>Antwort: wie bei <code>/register</code>.</p>\n<h2>Minds-Endpunkte</h2>\n<h3>POST /minds</h3>\n<p>Einen neuen Mind anlegen. Liefert den Mind Key — <strong>sofort speichern</strong>, er wird\nnur einmal angezeigt.</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/minds \\\n  -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_JWT&quot;</span> \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;name&quot;: &quot;Work Mind&quot;,\n    &quot;description&quot;: &quot;Job-related memories&quot;\n  }&#x27;</span></code></pre><p>Antwort:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;m_xyz789&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;name&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Work Mind&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;description&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Job-related memories&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;mind_key&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;mk_aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;created_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><div class=\"callout callout-critical\">Der `mind_key` wird nur einmal angezeigt. Wenn du ihn verlierst, kannst du ihn\nnicht wiederherstellen — du musst den Mind löschen und einen neuen anlegen\n(wodurch alle gespeicherten Memories verloren gehen).</div><h3>GET /minds</h3>\n<p>Alle Minds des aktuellen Nutzers auflisten.</p>\n<pre><code class=\"hljs language-bash\">curl -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_JWT&quot;</span> \\\n     https://synapse.schaefer.zone/minds</code></pre><p>Antwort:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;minds&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">[</span>\n    <span class=\"hljs-punctuation\">{</span>\n      <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;m_xyz789&quot;</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;name&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Work Mind&quot;</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;description&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Job-related memories&quot;</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;created_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;memory_count&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-number\">142</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;last_activity&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span>\n    <span class=\"hljs-punctuation\">}</span>\n  <span class=\"hljs-punctuation\">]</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><h3>DELETE /minds/:id</h3>\n<p>Einen Mind dauerhaft löschen.</p>\n<pre><code class=\"hljs language-bash\">curl -X DELETE -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_JWT&quot;</span> \\\n     https://synapse.schaefer.zone/minds/m_xyz789</code></pre><div class=\"callout callout-warn\">Das Löschen eines Minds ist **unumkehrbar**. Alle Memories, Tasks,\nChat-Verläufe und Scripts in diesem Mind gehen dauerhaft verloren. Exportiere\nvorher via `GET /memory/mind-export`, falls du ein Backup brauchst.</div><h2>Multi-Mind-Pattern</h2>\n<p>Die meisten Nutzer profitieren von mehreren Minds, um Kontexte getrennt zu\nhalten:</p>\n<pre><code class=\"hljs language-bash\"><span class=\"hljs-comment\"># Create minds for different contexts</span>\ncurl -X POST .../minds -d <span class=\"hljs-string\">&#x27;{&quot;name&quot;: &quot;work&quot;, &quot;description&quot;: &quot;Job&quot;}&#x27;</span>\n<span class=\"hljs-comment\"># → mind_key: mk_work...</span>\n\ncurl -X POST .../minds -d <span class=\"hljs-string\">&#x27;{&quot;name&quot;: &quot;personal&quot;, &quot;description&quot;: &quot;Personal life&quot;}&#x27;</span>\n<span class=\"hljs-comment\"># → mind_key: mk_personal...</span>\n\ncurl -X POST .../minds -d <span class=\"hljs-string\">&#x27;{&quot;name&quot;: &quot;project-synapse&quot;, &quot;description&quot;: &quot;Synapse dev&quot;}&#x27;</span>\n<span class=\"hljs-comment\"># → mind_key: mk_synapse...</span></code></pre><p>Verwende in verschiedenen LLM-Sessions unterschiedliche Mind Keys, um Kontexte\ngetrennt zu halten.</p>\n<h2>Kontosicherheit</h2>\n<h3>Passwort-Anforderungen</h3>\n<ul>\n<li>Mindestens 6 Zeichen</li>\n<li>Kein Maximum (verwende einen Passwort-Manager)</li>\n<li>Als bcrypt-Hash gespeichert (niemals im Klartext)</li>\n</ul>\n<h3>JWT-Ablauf</h3>\n<p>JWTs laufen nach <strong>7 Tagen</strong> ab. Wenn sie abgelaufen sind, rufe einfach wieder\n<code>/login</code> auf.</p>\n<h3>Mind-Key-Sicherheit</h3>\n<p>Mind Keys laufen nie ab. Wenn ein Mind Key kompromittiert wurde:</p>\n<ol>\n<li>Lege einen neuen Mind via <code>POST /minds</code> an</li>\n<li>Aktualisiere deine LLM-Konfiguration mit dem neuen Mind Key</li>\n<li>Lösche den kompromittierten Mind via <code>DELETE /minds/:id</code></li>\n</ol>\n<h2>Nächste Schritte</h2>\n<ul>\n<li><a href=\"/docs/getting-started/authentication\">Authentifizierung</a> — vollständiger Auth-Guide</li>\n<li><a href=\"/docs/getting-started/mind-key-vs-jwt\">Mind Key vs JWT</a> — Entscheidungsleitfaden</li>\n<li><a href=\"/docs/api/user\">Sharing-API</a> — Minds mit anderen Nutzern teilen</li>\n</ul>\n","urls":{"html":"/docs/api/user","text":"/docs/api/user?format=text","json":"/docs/api/user?format=json","llm":"/docs/api/user?format=llm"},"translations_available":["en","zh","hi","es","fr","ar","pt","ru","ja","de","it","ko","nl","pl","tr","sv","vi","th","id","uk"]}