{"title":"API de User y Minds","slug":"user","category":"api","summary":"Gestión de cuenta — registro, login, crear minds, listar minds, eliminar minds. Protegido con JWT.","audience":["human","llm"],"tags":["api","user","account","minds","jwt"],"difficulty":"beginner","updated":"2026-06-27","word_count":331,"read_minutes":2,"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":"es","translated":true,"requested_lang":"es","content_markdown":"\n# API de User y Minds\n\nLa API de User y Minds gestiona la administración de cuentas. Estos endpoints\nusan autenticación JWT (no Mind Keys) porque operan a nivel de cuenta, no a\nnivel de mind.\n\n## Endpoints de autenticación\n\n### POST /register\n\nCrea una nueva cuenta de usuario.\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\nRespuesta:\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\nInicia sesión en una cuenta existente.\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\nRespuesta: igual que `/register`.\n\n## Endpoints de Minds\n\n### POST /minds\n\nCrea un nuevo mind. Devuelve el Mind Key — **guárdelo de inmediato**, solo se\nmuestra una vez.\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\nRespuesta:\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> El `mind_key` se muestra solo una vez. Si lo pierde, no podrá recuperarlo —\n> debe eliminar el mind y crear uno nuevo (lo que pierde todas las memorias\n> almacenadas).\n\n### GET /minds\n\nLista todos los minds del usuario actual.\n\n```bash\ncurl -H \"Authorization: Bearer YOUR_JWT\" \\\n     https://synapse.schaefer.zone/minds\n```\n\nRespuesta:\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\nElimina un mind de forma permanente.\n\n```bash\ncurl -X DELETE -H \"Authorization: Bearer YOUR_JWT\" \\\n     https://synapse.schaefer.zone/minds/m_xyz789\n```\n\n> [!WARNING]\n> Eliminar un mind es **irreversible**. Todas las memorias, tareas, historial\n> de chat y scripts de ese mind se pierden de forma permanente. Exporte primero\n> vía `GET /memory/mind-export` si necesita un backup.\n\n## Patrón multi-mind\n\nLa mayoría de los usuarios se beneficia de tener múltiples minds para mantener\nlos contextos aislados:\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\nUse diferentes Mind Keys en diferentes sesiones LLM para mantener los contextos\naislados.\n\n## Seguridad de la cuenta\n\n### Requisitos de contraseña\n\n- Mínimo 6 caracteres\n- Sin máximo (use un gestor de contraseñas)\n- Se almacena como hash bcrypt (nunca en texto plano)\n\n### Expiración del JWT\n\nLos JWT expiran después de **7 días**. Al expirar, simplemente llame de nuevo a\n`/login`.\n\n### Seguridad del Mind Key\n\nLos Mind Keys nunca expiran. Si un Mind Key se ve comprometido:\n\n1. Cree un nuevo mind vía `POST /minds`\n2. Actualice la configuración de su LLM con el nuevo Mind Key\n3. Elimine el mind comprometido vía `DELETE /minds/:id`\n\n## Próximos pasos\n\n- [Autenticación](/docs/getting-started/authentication) — guía completa de auth\n- [Mind Key vs JWT](/docs/getting-started/mind-key-vs-jwt) — guía de decisión\n- [API de Sharing](/docs/api/user) — compartir minds con otros usuarios\n","content_html":"<h1>API de User y Minds</h1>\n<p>La API de User y Minds gestiona la administración de cuentas. Estos endpoints\nusan autenticación JWT (no Mind Keys) porque operan a nivel de cuenta, no a\nnivel de mind.</p>\n<h2>Endpoints de autenticación</h2>\n<h3>POST /register</h3>\n<p>Crea una nueva cuenta de usuario.</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>Respuesta:</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>Inicia sesión en una cuenta existente.</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>Respuesta: igual que <code>/register</code>.</p>\n<h2>Endpoints de Minds</h2>\n<h3>POST /minds</h3>\n<p>Crea un nuevo mind. Devuelve el Mind Key — <strong>guárdelo de inmediato</strong>, solo se\nmuestra una vez.</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>Respuesta:</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\">El `mind_key` se muestra solo una vez. Si lo pierde, no podrá recuperarlo —\ndebe eliminar el mind y crear uno nuevo (lo que pierde todas las memorias\nalmacenadas).</div><h3>GET /minds</h3>\n<p>Lista todos los minds del usuario actual.</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>Respuesta:</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>Elimina un mind de forma permanente.</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\">Eliminar un mind es **irreversible**. Todas las memorias, tareas, historial\nde chat y scripts de ese mind se pierden de forma permanente. Exporte primero\nvía `GET /memory/mind-export` si necesita un backup.</div><h2>Patrón multi-mind</h2>\n<p>La mayoría de los usuarios se beneficia de tener múltiples minds para mantener\nlos contextos aislados:</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>Use diferentes Mind Keys en diferentes sesiones LLM para mantener los contextos\naislados.</p>\n<h2>Seguridad de la cuenta</h2>\n<h3>Requisitos de contraseña</h3>\n<ul>\n<li>Mínimo 6 caracteres</li>\n<li>Sin máximo (use un gestor de contraseñas)</li>\n<li>Se almacena como hash bcrypt (nunca en texto plano)</li>\n</ul>\n<h3>Expiración del JWT</h3>\n<p>Los JWT expiran después de <strong>7 días</strong>. Al expirar, simplemente llame de nuevo a\n<code>/login</code>.</p>\n<h3>Seguridad del Mind Key</h3>\n<p>Los Mind Keys nunca expiran. Si un Mind Key se ve comprometido:</p>\n<ol>\n<li>Cree un nuevo mind vía <code>POST /minds</code></li>\n<li>Actualice la configuración de su LLM con el nuevo Mind Key</li>\n<li>Elimine el mind comprometido vía <code>DELETE /minds/:id</code></li>\n</ol>\n<h2>Próximos pasos</h2>\n<ul>\n<li><a href=\"/docs/getting-started/authentication\">Autenticación</a> — guía completa de auth</li>\n<li><a href=\"/docs/getting-started/mind-key-vs-jwt\">Mind Key vs JWT</a> — guía de decisión</li>\n<li><a href=\"/docs/api/user\">API de Sharing</a> — compartir minds con otros usuarios</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"]}