{"id":975,"date":"2024-11-22T12:34:46","date_gmt":"2024-11-22T12:34:46","guid":{"rendered":"https:\/\/mindpax.me\/?page_id=975"},"modified":"2024-11-22T13:03:51","modified_gmt":"2024-11-22T13:03:51","slug":"mindpax-platform-in-2-minutes","status":"publish","type":"page","link":"https:\/\/www.mindpax.me\/de\/mindpax-platform-in-2-minutes\/","title":{"rendered":"MindPax platform in 2 minutes"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; admin_label=&#8221;section&#8221; _builder_version=&#8221;4.27.0&#8243; background_enable_color=&#8221;off&#8221; background_image=&#8221;https:\/\/mindpax.me\/wp-content\/uploads\/2024\/09\/Hero.png&#8221; background_enable_video_mp4=&#8221;off&#8221; background_video_width=&#8221;100%&#8221; z_index=&#8221;2&#8243; height=&#8221;70vh&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row admin_label=&#8221;row&#8221; _builder_version=&#8221;4.27.0&#8243; background_color=&#8221;RGBA(255,255,255,0)&#8221; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221; custom_padding=&#8221;||52px|||&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.27.3&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|600|||||||&#8221; header_text_align=&#8221;center&#8221; header_text_color=&#8221;#FFFFFF&#8221; header_font_size=&#8221;40px&#8221; header_line_height=&#8221;1.2em&#8221; max_width=&#8221;800px&#8221; module_alignment=&#8221;center&#8221; custom_margin=&#8221;17vh||||false|false&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_margin_phone=&#8221;3vh||||false|false&#8221; sticky_enabled=&#8221;0&#8243; custom_margin_tablet=&#8221;17vh||||false|false&#8221;]<\/p>\n<h1>Walkthrough of Mindpax<br \/>in 2 minutes!<\/h1>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.27.3&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; transform_translate_linked=&#8221;off&#8221; width=&#8221;92%&#8221; module_alignment=&#8221;center&#8221; custom_padding=&#8221;24px|24px|24px|24px|true|true&#8221; hover_enabled=&#8221;0&#8243; border_radii=&#8221;on|10px|10px|10px|10px&#8221; box_shadow_style=&#8221;preset1&#8243; global_colors_info=&#8221;{}&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; custom_padding_phone=&#8221;4px|4px|4px|4px|true|true&#8221; sticky_enabled=&#8221;0&#8243; custom_padding_tablet=&#8221;24px|24px|24px|24px|true|true&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_code _builder_version=&#8221;4.27.3&#8243; _module_preset=&#8221;default&#8221; text_orientation=&#8221;center&#8221; width=&#8221;100%&#8221; custom_padding=&#8221;43px|||||&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; custom_padding_phone=&#8221;0px||||false|false&#8221; sticky_enabled=&#8221;0&#8243; custom_padding_tablet=&#8221;43px|||||&#8221;]<script><!-- [et_pb_line_break_holder] -->    \/\/ Video URLs<!-- [et_pb_line_break_holder] -->    const videos = {<!-- [et_pb_line_break_holder] -->        en: \"https:\/\/www.youtube.com\/embed\/hrgQRereqb8\",<!-- [et_pb_line_break_holder] -->        cz: \"https:\/\/www.youtube.com\/embed\/cS9exDHTXIw\",<!-- [et_pb_line_break_holder] -->        de: \"https:\/\/www.youtube.com\/embed\/v83YBJV9JeA\"<!-- [et_pb_line_break_holder] -->    };<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->    \/\/ Get the language code from the URL path<!-- [et_pb_line_break_holder] -->    const path = window.location.pathname;<!-- [et_pb_line_break_holder] -->    let lang = path.includes(\"\/cz\/\") ? \"cz\" : path.includes(\"\/de\/\") ? \"de\" : \"en\";<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->    \/\/ Create the iframe element<!-- [et_pb_line_break_holder] -->    const videoIframe = document.createElement(\"iframe\");<!-- [et_pb_line_break_holder] -->    videoIframe.src = videos[lang];<!-- [et_pb_line_break_holder] -->    videoIframe.style.maxWidth = \"100%\"; \/\/ Ensures responsiveness<!-- [et_pb_line_break_holder] -->    videoIframe.style.margin = \"0 auto\"; \/\/ Centers the video<!-- [et_pb_line_break_holder] -->    videoIframe.style.display = \"block\"; \/\/ Prevents inline issues<!-- [et_pb_line_break_holder] -->    videoIframe.frameBorder = \"0\";<!-- [et_pb_line_break_holder] -->    videoIframe.allow = \"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\";<!-- [et_pb_line_break_holder] -->    videoIframe.allowFullscreen = true;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->    \/\/ Append the iframe to the Divi Code Module's parent container<!-- [et_pb_line_break_holder] -->    document.currentScript.parentNode.appendChild(videoIframe);<!-- [et_pb_line_break_holder] --><\/script><!-- [et_pb_line_break_holder] -->[\/et_pb_code][et_pb_button button_url=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyOCJ9fQ==@&#8221; button_text=&#8221;Start Now&#8221; button_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.3&#8243; _dynamic_attributes=&#8221;button_url&#8221; _module_preset=&#8221;default&#8221; custom_button=&#8221;on&#8221; button_text_size=&#8221;17px&#8221; button_text_color=&#8221;#FFFFFF&#8221; button_bg_color=&#8221;#0091db&#8221; button_border_width=&#8221;2px&#8221; button_border_color=&#8221;#0091db&#8221; button_border_radius=&#8221;8px&#8221; button_font=&#8221;|600|||||||&#8221; button_icon=&#8221;&#x24;||divi||400&#8243; button_on_hover=&#8221;off&#8221; custom_padding=&#8221;6px|36px|6px|18px|true|false&#8221; global_colors_info=&#8221;{}&#8221; min_height=&#8221;42px&#8221; custom_margin=&#8221;||14px|||&#8221;][\/et_pb_button][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#f5fafe&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_4,1_4,1_4,1_4&#8243; _builder_version=&#8221;4.27.3&#8243; _module_preset=&#8221;default&#8221; custom_margin=&#8221;554px|auto||auto||&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_margin_phone=&#8221;50px|auto||auto|false|false&#8221; sticky_enabled=&#8221;0&#8243; custom_margin_tablet=&#8221;554px|auto||auto||&#8221;][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<div class=\"elementor-element elementor-element-927d9ab elementor-widget elementor-widget-text-editor\" data-id=\"927d9ab\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n<div class=\"elementor-widget-container\">\n<p><strong>Client Referrals<\/strong><\/p>\n<\/div>\n<\/div>\n<div class=\"elementor-element elementor-element-1c3e2df elementor-widget elementor-widget-mindpax-text-group\" data-id=\"1c3e2df\" data-element_type=\"widget\" data-widget_type=\"mindpax-text-group.default\">\n<div class=\"elementor-widget-container\">\n<section class=\"mindpax__text-group\"><\/section>\n<\/div>\n<\/div>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;&#8211;et_global_body_font||||||||&#8221; header_2_line_height=&#8221;1.2em&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2><strong><span style=\"color: #0091db;\">Whom we&#8217;ve helped already<\/span><br \/><\/strong><\/h2>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_margin=&#8221;16px||||false|false&#8221; custom_padding=&#8221;32px|32px|32px|32px|false|false&#8221; border_radii=&#8221;on|10px|10px|10px|10px&#8221; box_shadow_style=&#8221;preset2&#8243; box_shadow_horizontal=&#8221;2px&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<div class=\"quote__text\">\n<p dir=\"ltr\">The key moment with the Mindpax system was for me during my last significant mood swing in the fall. The doctor viewed all the Mindpax graphs for the past years to show me the course of the disease. We looked at the graph and discussed it. I could see what my disease looked like.<\/p>\n<\/div>\n<div class=\"quote__author\">\n<p><strong><\/strong><\/p>\n<p style=\"text-align: right;\"><strong>\u2014 Female patient, 50<\/strong><\/p>\n<\/div>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;32px|32px|32px|32px|false|false&#8221; border_radii=&#8221;on|10px|10px|10px|10px&#8221; box_shadow_style=&#8221;preset2&#8243; box_shadow_horizontal=&#8221;2px&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<div class=\"quote__text\">\n<p dir=\"ltr\"><span>Mindpax monitors my sleep and mood. In the past, I wrote down my sleep and mood changes every day. I don&#8217;t have to do that anymore.\u00a0 Another positive outcome is that my doctor can use the data to help me manage my disease. I also believe that the system may bring valid information about the treatment success.<\/span><\/p>\n<\/div>\n<div class=\"quote__author\">\n<p><strong><\/strong><\/p>\n<p style=\"text-align: right;\"><strong>\u2014 Male patient, 32<\/strong><\/p>\n<\/div>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_margin=&#8221;46px||||false|false&#8221; custom_padding=&#8221;32px|32px|32px|32px|false|false&#8221; border_radii=&#8221;on|10px|10px|10px|10px&#8221; box_shadow_style=&#8221;preset2&#8243; box_shadow_horizontal=&#8221;2px&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<div class=\"quote__text\">\n<p dir=\"ltr\"><span>I suffer with mania. But thanks to Mindpax&#8217;s solution and my patient husband we have managed to not only curb the growth of my mania, but actually decrease it in the last two days. Thank you and your colleagues very much.<\/span><\/p>\n<\/div>\n<div class=\"quote__author\">\n<p><strong><\/strong><\/p>\n<p style=\"text-align: right;\"><strong>\u2014 Female patient, 43<\/strong><\/p>\n<\/div>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Walkthrough of Mindpaxin 2 minutes! Client Referrals Whom we&#8217;ve helped already The key moment with the Mindpax system was for me during my last significant mood swing in the fall. The doctor viewed all the Mindpax graphs for the past years to show me the course of the disease. We looked at the graph and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"folder":[],"class_list":["post-975","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MindPax platform in 2 minutes - Mindpax<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MindPax platform in 2 minutes - Mindpax\" \/>\n<meta property=\"og:description\" content=\"Walkthrough of Mindpaxin 2 minutes! Client Referrals Whom we&#039;ve helped already The key moment with the Mindpax system was for me during my last significant mood swing in the fall. The doctor viewed all the Mindpax graphs for the past years to show me the course of the disease. We looked at the graph and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/\" \/>\n<meta property=\"og:site_name\" content=\"Mindpax\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-22T13:03:51+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/\",\"url\":\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/\",\"name\":\"MindPax platform in 2 minutes - Mindpax\",\"isPartOf\":{\"@id\":\"https:\/\/www.mindpax.me\/en\/#website\"},\"datePublished\":\"2024-11-22T12:34:46+00:00\",\"dateModified\":\"2024-11-22T13:03:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mindpax.me\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MindPax platform in 2 minutes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mindpax.me\/en\/#website\",\"url\":\"https:\/\/www.mindpax.me\/en\/\",\"name\":\"Mindpax.me\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.mindpax.me\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mindpax.me\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.mindpax.me\/en\/#organization\",\"name\":\"Mindpax\",\"url\":\"https:\/\/www.mindpax.me\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/www.mindpax.me\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/mindpax.me\/wp-content\/uploads\/2024\/11\/Mindpax.png\",\"contentUrl\":\"https:\/\/mindpax.me\/wp-content\/uploads\/2024\/11\/Mindpax.png\",\"width\":512,\"height\":512,\"caption\":\"Mindpax\"},\"image\":{\"@id\":\"https:\/\/www.mindpax.me\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/mindpax.me\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MindPax platform in 2 minutes - Mindpax","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/","og_locale":"de_DE","og_type":"article","og_title":"MindPax platform in 2 minutes - Mindpax","og_description":"Walkthrough of Mindpaxin 2 minutes! Client Referrals Whom we've helped already The key moment with the Mindpax system was for me during my last significant mood swing in the fall. The doctor viewed all the Mindpax graphs for the past years to show me the course of the disease. We looked at the graph and [&hellip;]","og_url":"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/","og_site_name":"Mindpax","article_modified_time":"2024-11-22T13:03:51+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/","url":"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/","name":"MindPax platform in 2 minutes - Mindpax","isPartOf":{"@id":"https:\/\/www.mindpax.me\/en\/#website"},"datePublished":"2024-11-22T12:34:46+00:00","dateModified":"2024-11-22T13:03:51+00:00","breadcrumb":{"@id":"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lightsail.mindpax-web.mindpax.me\/en\/mindpax-platform-in-2-minutes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mindpax.me\/en\/"},{"@type":"ListItem","position":2,"name":"MindPax platform in 2 minutes"}]},{"@type":"WebSite","@id":"https:\/\/www.mindpax.me\/en\/#website","url":"https:\/\/www.mindpax.me\/en\/","name":"Mindpax.me","description":"","publisher":{"@id":"https:\/\/www.mindpax.me\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mindpax.me\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/www.mindpax.me\/en\/#organization","name":"Mindpax","url":"https:\/\/www.mindpax.me\/en\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.mindpax.me\/en\/#\/schema\/logo\/image\/","url":"https:\/\/mindpax.me\/wp-content\/uploads\/2024\/11\/Mindpax.png","contentUrl":"https:\/\/mindpax.me\/wp-content\/uploads\/2024\/11\/Mindpax.png","width":512,"height":512,"caption":"Mindpax"},"image":{"@id":"https:\/\/www.mindpax.me\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/mindpax.me"]}]}},"_links":{"self":[{"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/pages\/975"}],"collection":[{"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/comments?post=975"}],"version-history":[{"count":22,"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/pages\/975\/revisions"}],"predecessor-version":[{"id":1011,"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/pages\/975\/revisions\/1011"}],"wp:attachment":[{"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/media?parent=975"}],"wp:term":[{"taxonomy":"folder","embeddable":true,"href":"https:\/\/www.mindpax.me\/de\/wp-json\/wp\/v2\/folder?post=975"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}