[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"reazon-page-\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started\u002Fquick-start":3,"reazon-offering-angebot-leistungen":22,"reazon-offering-angebot-zielgruppen":35,"reazon-angebot-subnav":36,"reazon-mainnav":49,"reazon-docs-tree-\u002Fde\u002Fhilfe":56,"reazon-footernav":257},{"data":4},{"id":5,"path":6,"slug":7,"published_at":8,"page_type":9,"no_index":12,"fields":13,"blocks":21},1207,"\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started\u002Fquick-start","quick-start","2026-08-17T13:37:04.219Z",{"identifier":10,"name":11},"docs","Docs \u002F Hilfe",false,{"title":14,"summary":15,"body":16,"body_html":17,"position":18,"meta_title":19,"meta_description":20},"Quick Start","Make your first Wortfreunde API calls in minutes","# Quick Start\n\nThis guide walks you through your first API calls using curl. By the end, you'll have verified your credentials, listed channels, browsed posts, and fetched a single post.\n\n## Prerequisites\n\nBefore starting, ensure you have:\n\n- A Wortfreunde account\n- An API key ([get one here](\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started\u002Fauthentication))\n- curl installed (available on macOS, Linux, and Windows)\n\nSet your API key as an environment variable so you can copy-paste the examples below:\n\n```bash\nexport WORTFREUNDE_API_KEY=\"your-api-key-here\"\n```\n\n## Step 1: Check Authentication\n\nFirst, verify that your API key is valid by calling the `\u002Fme` endpoint:\n\n```bash\ncurl -s https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fme \\\n  -H \"Authorization: Bearer $WORTFREUNDE_API_KEY\" | python3 -m json.tool\n```\n\n> **Info**\n>\n> `python3 -m json.tool` formats the JSON response so it's easier to read. You can also use `jq` if you have it installed: `... | jq .`\n\nYou should see your account details:\n\n```json\n{\n  \"data\": {\n    \"account\": {\n      \"id\": 3,\n      \"name\": \"Wertstifter GmbH\"\n    },\n    \"token\": {\n      \"name\": \"Development Token\",\n      \"scopes\": [\n        \"read:channels\",\n        \"read:posts\",\n        \"read:media\"\n      ],\n      \"expires_at\": \"2027-03-09T09:53:43.348Z\"\n    }\n  }\n}\n```\n\n> **⚠️ Warnung**\n>\n> If you get a `401` error, double-check your API key. Make sure the environment variable is set correctly and the key hasn't expired.\n\n## Step 2: List Channels\n\nNow let's see which channels are available in your account:\n\n```bash\ncurl -s https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fchannels \\\n  -H \"Authorization: Bearer $WORTFREUNDE_API_KEY\" | python3 -m json.tool\n```\n\nResponse:\n\n```json\n{\n    \"data\": [\n        {\n            \"id\": 161,\n            \"title\": \"Blog\",\n            \"platform\": \"git\",\n            \"team\": {\n                \"id\": 42,\n                \"name\": \"Wortfreunde\"\n            },\n            \"posts_count\": 3\n        },\n        {\n            \"id\": 167,\n            \"title\": \"Blog\",\n            \"platform\": \"blog\",\n            \"team\": null,\n            \"posts_count\": 0\n        },\n}\n```\n\nNote the channel `id`, you'll need it to list posts for a specific channel.\n\n## Step 3: List Posts\n\nFetch posts from a channel. Replace `161` with a channel ID from the previous step:\n\n```bash\ncurl -s \"https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fchannels\u002F161\u002Fposts \\\n  -H \"Authorization: Bearer $WORTFREUNDE_API_KEY\" | python3 -m json.tool\n```\n\nResponse:\n\n```json\n{\n  \"data\": [\n    {\n        \"id\": 214,\n        \"title\": \"Warum strukturierte Content-Planung mehr bringt als spontane Posts\",\n        \"teaser\": \"Montagmorgen. Der Cursor blinkt. Was soll ich heute posten? Dir fällt nichts ein. Also scrollst du durch den Feed, hoffst auf Inspiration. Eine Stunde später: immer noch kein Post. Dafür drei neue Tabs mit Artikeln, die du später lesen willst. Das Problem ist fehlende Struktur.\",\n        \"slug\": \"strukturierte-content-planung-vs-spontane-posts\",\n        \"publication_status\": \"published\",\n        \"created_at\": \"2026-03-02T16:54:36.465Z\",\n        \"updated_at\": \"2026-03-09T05:00:48.275Z\",\n        \"channel\": {\n            \"id\": 161,\n            \"title\": \"Blog\",\n            \"platform\": \"git\",\n            \"team\": {\n                \"id\": 42,\n                \"name\": \"Wortfreunde\"\n            },\n            \"posts_count\": 3\n        }\n    },\n  ],\n  \"pagination\": {\n    \"page\": 1,\n    \"limit\": 20,\n    \"total\": 42\n  }\n}\n```\n\n## Step 4: Get Post Detail\n\nFetch the full details of a single post using its ID:\n\n```bash\ncurl -s https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fposts\u002F301 \\\n  -H \"Authorization: Bearer $WORTFREUNDE_API_KEY\" | python3 -m json.tool\n```\n\nResponse:\n\n```json\n{\n  \"data\": {\n    \"id\": 214,\n    \"title\": \"Warum strukturierte Content-Planung mehr bringt als spontane Posts\",\n    \"body\": \"... markdown content ...\",\n    \"teaser\": \"Montagmorgen. Der Cursor blinkt. Was soll ich heute posten? Dir fällt nichts ein. Also scrollst du durch den Feed, hoffst auf Inspiration. Eine Stunde später: immer noch kein Post. Dafür drei neue Tabs mit Artikeln, die du später lesen willst. Das Problem ist fehlende Struktur.\",\n    \"slug\": \"strukturierte-content-planung-vs-spontane-posts\",\n    \"publication_status\": \"published\",\n    \"created_at\": \"2026-03-02T16:54:36.465Z\",\n    \"updated_at\": \"2026-03-09T05:00:48.275Z\",\n    \"channel\": {\n        \"id\": 161,\n        \"title\": \"Blog\",\n        \"platform\": \"git\",\n        \"team\": {\n            \"id\": 42,\n            \"name\": \"Wortfreunde\"\n        },\n        \"posts_count\": 3\n    },\n    \"tags\": [],\n    \"media\": [],\n    \"meta_title\": \"Strukturierte Content-Planung vs. spontane Posts\",\n    \"meta_description\": \"Erfahre, warum strukturierte Content-Planung mehr Sichtbarkeit und Resonanz bringt als spontane Posts.\",\n    \"published_at\": \"2026-03-09T05:00:48.269Z\"\n  }\n}\n```\n\n## Error Handling\n\nIf something goes wrong, the API returns a clear error response:\n\n```json\n{\n  \"error\": {\n    \"code\": \"authentication_failed\",\n    \"message\": \"Invalid API key provided\"\n  }\n}\n```\n\nCommon status codes:\n\n| Code | Meaning |\n|------|---------|\n| 200  | Success |\n| 401  | Invalid or missing API key |\n| 403  | Valid key but insufficient scopes |\n| 404  | Resource not found |\n| 429  | Rate limit exceeded |\n\n## Next Steps\n\nYou've successfully made your first API calls:\n\n- Verified your credentials with `\u002Fme`\n- Listed channels with `\u002Fchannels`\n- Browsed posts with `\u002Fchannels\u002F:channel_id\u002Fposts`\n- Fetched post details with `\u002Fchannels\u002F:channel_id\u002Fposts\u002F:id`\n\n### What's Next?\n\n- [API Endpoints](\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fendpoints), full endpoint reference\n- [Chromeless Mode](\u002Fde\u002Fhilfe\u002Fapi\u002Fsso\u002Fchromeless-mode), embed Studio pages without navigation","\u003Ch1>Quick Start\u003C\u002Fh1>\n\n\u003Cp>This guide walks you through your first API calls using curl. By the end, you&#39;ll have verified your credentials, listed channels, browsed posts, and fetched a single post.\u003C\u002Fp>\n\n\u003Ch2>Prerequisites\u003C\u002Fh2>\n\n\u003Cp>Before starting, ensure you have:\u003C\u002Fp>\n\n\u003Cul>\n\u003Cli>A Wortfreunde account\u003C\u002Fli>\n\u003Cli>An API key (\u003Ca href=\"\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started\u002Fauthentication\">get one here\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>curl installed (available on macOS, Linux, and Windows)\u003C\u002Fli>\n\u003C\u002Ful>\n\n\u003Cp>Set your API key as an environment variable so you can copy-paste the examples below:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"bash\">export WORTFREUNDE_API_KEY=&quot;your-api-key-here&quot;\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Ch2>Step 1: Check Authentication\u003C\u002Fh2>\n\n\u003Cp>First, verify that your API key is valid by calling the \u003Ccode>\u002Fme\u003C\u002Fcode> endpoint:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"bash\">curl -s https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fme \\\n  -H &quot;Authorization: Bearer $WORTFREUNDE_API_KEY&quot; | python3 -m json.tool\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>Info\u003C\u002Fstrong>\u003C\u002Fp>\n\n\u003Cp>\u003Ccode>python3 -m json.tool\u003C\u002Fcode> formats the JSON response so it&#39;s easier to read. You can also use \u003Ccode>jq\u003C\u002Fcode> if you have it installed: \u003Ccode>... | jq .\u003C\u002Fcode>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\n\u003Cp>You should see your account details:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"json\">{\n  &quot;data&quot;: {\n    &quot;account&quot;: {\n      &quot;id&quot;: 3,\n      &quot;name&quot;: &quot;Wertstifter GmbH&quot;\n    },\n    &quot;token&quot;: {\n      &quot;name&quot;: &quot;Development Token&quot;,\n      &quot;scopes&quot;: [\n        &quot;read:channels&quot;,\n        &quot;read:posts&quot;,\n        &quot;read:media&quot;\n      ],\n      &quot;expires_at&quot;: &quot;2027-03-09T09:53:43.348Z&quot;\n    }\n  }\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>⚠️ Warnung\u003C\u002Fstrong>\u003C\u002Fp>\n\n\u003Cp>If you get a \u003Ccode>401\u003C\u002Fcode> error, double-check your API key. Make sure the environment variable is set correctly and the key hasn&#39;t expired.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\n\u003Ch2>Step 2: List Channels\u003C\u002Fh2>\n\n\u003Cp>Now let&#39;s see which channels are available in your account:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"bash\">curl -s https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fchannels \\\n  -H &quot;Authorization: Bearer $WORTFREUNDE_API_KEY&quot; | python3 -m json.tool\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cp>Response:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"json\">{\n    &quot;data&quot;: [\n        {\n            &quot;id&quot;: 161,\n            &quot;title&quot;: &quot;Blog&quot;,\n            &quot;platform&quot;: &quot;git&quot;,\n            &quot;team&quot;: {\n                &quot;id&quot;: 42,\n                &quot;name&quot;: &quot;Wortfreunde&quot;\n            },\n            &quot;posts_count&quot;: 3\n        },\n        {\n            &quot;id&quot;: 167,\n            &quot;title&quot;: &quot;Blog&quot;,\n            &quot;platform&quot;: &quot;blog&quot;,\n            &quot;team&quot;: null,\n            &quot;posts_count&quot;: 0\n        },\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cp>Note the channel \u003Ccode>id\u003C\u002Fcode>, you&#39;ll need it to list posts for a specific channel.\u003C\u002Fp>\n\n\u003Ch2>Step 3: List Posts\u003C\u002Fh2>\n\n\u003Cp>Fetch posts from a channel. Replace \u003Ccode>161\u003C\u002Fcode> with a channel ID from the previous step:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"bash\">curl -s &quot;https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fchannels\u002F161\u002Fposts \\\n  -H &quot;Authorization: Bearer $WORTFREUNDE_API_KEY&quot; | python3 -m json.tool\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cp>Response:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"json\">{\n  &quot;data&quot;: [\n    {\n        &quot;id&quot;: 214,\n        &quot;title&quot;: &quot;Warum strukturierte Content-Planung mehr bringt als spontane Posts&quot;,\n        &quot;teaser&quot;: &quot;Montagmorgen. Der Cursor blinkt. Was soll ich heute posten? Dir fällt nichts ein. Also scrollst du durch den Feed, hoffst auf Inspiration. Eine Stunde später: immer noch kein Post. Dafür drei neue Tabs mit Artikeln, die du später lesen willst. Das Problem ist fehlende Struktur.&quot;,\n        &quot;slug&quot;: &quot;strukturierte-content-planung-vs-spontane-posts&quot;,\n        &quot;publication_status&quot;: &quot;published&quot;,\n        &quot;created_at&quot;: &quot;2026-03-02T16:54:36.465Z&quot;,\n        &quot;updated_at&quot;: &quot;2026-03-09T05:00:48.275Z&quot;,\n        &quot;channel&quot;: {\n            &quot;id&quot;: 161,\n            &quot;title&quot;: &quot;Blog&quot;,\n            &quot;platform&quot;: &quot;git&quot;,\n            &quot;team&quot;: {\n                &quot;id&quot;: 42,\n                &quot;name&quot;: &quot;Wortfreunde&quot;\n            },\n            &quot;posts_count&quot;: 3\n        }\n    },\n  ],\n  &quot;pagination&quot;: {\n    &quot;page&quot;: 1,\n    &quot;limit&quot;: 20,\n    &quot;total&quot;: 42\n  }\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Ch2>Step 4: Get Post Detail\u003C\u002Fh2>\n\n\u003Cp>Fetch the full details of a single post using its ID:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"bash\">curl -s https:\u002F\u002Fapi.wortfreunde.ch\u002Fv1\u002Fposts\u002F301 \\\n  -H &quot;Authorization: Bearer $WORTFREUNDE_API_KEY&quot; | python3 -m json.tool\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cp>Response:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"json\">{\n  &quot;data&quot;: {\n    &quot;id&quot;: 214,\n    &quot;title&quot;: &quot;Warum strukturierte Content-Planung mehr bringt als spontane Posts&quot;,\n    &quot;body&quot;: &quot;... markdown content ...&quot;,\n    &quot;teaser&quot;: &quot;Montagmorgen. Der Cursor blinkt. Was soll ich heute posten? Dir fällt nichts ein. Also scrollst du durch den Feed, hoffst auf Inspiration. Eine Stunde später: immer noch kein Post. Dafür drei neue Tabs mit Artikeln, die du später lesen willst. Das Problem ist fehlende Struktur.&quot;,\n    &quot;slug&quot;: &quot;strukturierte-content-planung-vs-spontane-posts&quot;,\n    &quot;publication_status&quot;: &quot;published&quot;,\n    &quot;created_at&quot;: &quot;2026-03-02T16:54:36.465Z&quot;,\n    &quot;updated_at&quot;: &quot;2026-03-09T05:00:48.275Z&quot;,\n    &quot;channel&quot;: {\n        &quot;id&quot;: 161,\n        &quot;title&quot;: &quot;Blog&quot;,\n        &quot;platform&quot;: &quot;git&quot;,\n        &quot;team&quot;: {\n            &quot;id&quot;: 42,\n            &quot;name&quot;: &quot;Wortfreunde&quot;\n        },\n        &quot;posts_count&quot;: 3\n    },\n    &quot;tags&quot;: [],\n    &quot;media&quot;: [],\n    &quot;meta_title&quot;: &quot;Strukturierte Content-Planung vs. spontane Posts&quot;,\n    &quot;meta_description&quot;: &quot;Erfahre, warum strukturierte Content-Planung mehr Sichtbarkeit und Resonanz bringt als spontane Posts.&quot;,\n    &quot;published_at&quot;: &quot;2026-03-09T05:00:48.269Z&quot;\n  }\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Ch2>Error Handling\u003C\u002Fh2>\n\n\u003Cp>If something goes wrong, the API returns a clear error response:\u003C\u002Fp>\n\n\u003Cpre>\u003Ccode class=\"json\">{\n  &quot;error&quot;: {\n    &quot;code&quot;: &quot;authentication_failed&quot;,\n    &quot;message&quot;: &quot;Invalid API key provided&quot;\n  }\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\n\u003Cp>Common status codes:\u003C\u002Fp>\n\n\u003Ctable>\u003Cthead>\n\u003Ctr>\n\u003Cth>Code\u003C\u002Fth>\n\u003Cth>Meaning\u003C\u002Fth>\n\u003C\u002Ftr>\n\u003C\u002Fthead>\u003Ctbody>\n\u003Ctr>\n\u003Ctd>200\u003C\u002Ftd>\n\u003Ctd>Success\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003Ctr>\n\u003Ctd>401\u003C\u002Ftd>\n\u003Ctd>Invalid or missing API key\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003Ctr>\n\u003Ctd>403\u003C\u002Ftd>\n\u003Ctd>Valid key but insufficient scopes\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003Ctr>\n\u003Ctd>404\u003C\u002Ftd>\n\u003Ctd>Resource not found\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003Ctr>\n\u003Ctd>429\u003C\u002Ftd>\n\u003Ctd>Rate limit exceeded\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003C\u002Ftbody>\u003C\u002Ftable>\n\n\u003Ch2>Next Steps\u003C\u002Fh2>\n\n\u003Cp>You&#39;ve successfully made your first API calls:\u003C\u002Fp>\n\n\u003Cul>\n\u003Cli>Verified your credentials with \u003Ccode>\u002Fme\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Listed channels with \u003Ccode>\u002Fchannels\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Browsed posts with \u003Ccode>\u002Fchannels\u002F:channel_id\u002Fposts\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Fetched post details with \u003Ccode>\u002Fchannels\u002F:channel_id\u002Fposts\u002F:id\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\n\u003Ch3>What&#39;s Next?\u003C\u002Fh3>\n\n\u003Cul>\n\u003Cli>\u003Ca href=\"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fendpoints\">API Endpoints\u003C\u002Fa>, full endpoint reference\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"\u002Fde\u002Fhilfe\u002Fapi\u002Fsso\u002Fchromeless-mode\">Chromeless Mode\u003C\u002Fa>, embed Studio pages without navigation\u003C\u002Fli>\n\u003C\u002Ful>\n",3,"Wortfreunde API Quick Start mit curl","Erste Wortfreunde API-Aufrufe mit curl: Zugang prüfen, Channels und Posts auflisten, einzelne Beiträge abrufen und typische Fehler behandeln.",[],[23,27,31],{"title":24,"href":25,"description":26},"Wortfreunde Studio","\u002Fde\u002Fstudio","Du erstellst deinen Content selbst, mit einem geführten Prozess: Recherche, Erstellung und Planung in einem System.",{"title":28,"href":29,"description":30},"Wortfreunde Redaktion","\u002Fde\u002Fredaktion","Redaktionelle Ausarbeitung anfragen. Kanäle, Umfang, Rollen und Freigabe werden im individuellen Angebot festgelegt.",{"title":32,"href":33,"description":34},"Wortfreunde Partner","\u002Fde\u002Fpartner","Du betreust Kunden? Pro Kunde eine eigene Strategie, eigene Themen, eigener Plan. Qualität bei Skalierung.",[],[37,40,43,46],{"title":38,"href":39},"Vergleich","\u002Fde\u002Fcontent-erstellen-vergleich",{"title":41,"href":42},"Unser Ansatz","\u002Fde\u002Funser-ansatz-authentische-sichtbarkeit",{"title":44,"href":45},"Über uns","\u002Fde\u002Fueber-die-wortfreunde",{"title":47,"href":48},"Kontakt","\u002Fde\u002Fkontakt",[50,53],{"title":51,"href":52},"Preise","\u002Fde\u002Fpreise",{"title":54,"href":55},"Wissen","\u002Fde\u002Fwissen",{"root":57,"tree":62},{"path":58,"title":59,"summary":60,"nav_variant":61},"\u002Fde\u002Fhilfe","Hilfe","Hier findest du Anleitungen, Erklärungen und alles Wichtige rund um Wortfreunde. Damit du das Beste aus deiner Content-Arbeit herausholst.","nested",[63,122,178],{"path":64,"slug":65,"title":66,"position":67,"children":68},"\u002Fde\u002Fhilfe\u002Fcontent","content","Verwaltung von Inhalten",0,[69,88,105],{"path":70,"slug":71,"title":72,"position":73,"children":74},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fposts","posts","Posts",1,[75,81],{"path":76,"slug":77,"title":78,"summary":79,"position":73,"children":80},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fposts\u002Ffreigaben","freigaben","Freigaben","Beiträge vor der Veröffentlichung zur Prüfung freigeben lassen",[],{"path":82,"slug":83,"title":84,"summary":85,"position":86,"children":87},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fposts\u002Ferster-kommentar","erster-kommentar","Links als Kommentar","Links im Post kosten Reichweite. Der Erste Kommentar ist die bessere Alternative.",2,[],{"path":89,"slug":90,"title":91,"position":86,"children":92},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fmediathek","mediathek","Mediathek",[93,99],{"path":94,"slug":95,"title":96,"summary":97,"position":73,"children":98},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fmediathek\u002Fcanva","canva","Canva Integration","Canva Konto verbinden, Designs durchsuchen und in die Mediathek importieren",[],{"path":100,"slug":101,"title":102,"summary":103,"position":86,"children":104},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fmediathek\u002Fkarussells","karussells","Karussells","Karussell-Posts mit mehreren Folien erstellen, bearbeiten und per Chat optimieren",[],{"path":106,"slug":107,"title":108,"position":18,"children":109},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fteams","teams","Teams",[110,116],{"path":111,"slug":112,"title":113,"summary":114,"position":73,"children":115},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fteams\u002Fuebersicht","uebersicht","Übersicht","Mit Teams organisierst du Inhalte nach Kontext, damit unterschiedliche Bereiche unabhängig arbeiten können.",[],{"path":117,"slug":118,"title":119,"summary":120,"position":86,"children":121},"\u002Fde\u002Fhilfe\u002Fcontent\u002Fteams\u002Fteam-erstellen","team-erstellen","Team erstellen","So erstellst du ein neues Team und richtest es ein.",[],{"path":123,"slug":124,"title":125,"position":73,"children":126},"\u002Fde\u002Fhilfe\u002Fautomationen","automationen","Automationen",[127,148],{"path":128,"slug":129,"title":130,"position":67,"children":131},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Fgrundlagen","grundlagen","Grundlagen",[132,136,142],{"path":133,"slug":112,"title":113,"summary":134,"position":67,"children":135},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Fgrundlagen\u002Fuebersicht","Wiederkehrende Content-Aufgaben automatisieren. Social-Media-Posts und Content-Ideen per Knopfdruck oder E-Mail erstellen lassen.",[],{"path":137,"slug":138,"title":139,"summary":140,"position":73,"children":141},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Fgrundlagen\u002Feingabefelder","eingabefelder","Eingabefelder & Platzhalter","Eingabefelder definieren und mit Platzhaltern in Aufgaben verwenden.",[],{"path":143,"slug":144,"title":145,"summary":146,"position":86,"children":147},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Fgrundlagen\u002Fstarten","starten","Starten","Content-Automationen im Browser oder per E-Mail auslösen.",[],{"path":149,"slug":150,"title":151,"position":73,"children":152},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Faufgaben","aufgaben","Aufgaben",[153,159,165,171],{"path":154,"slug":155,"title":156,"summary":157,"position":73,"children":158},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Faufgaben\u002Fpost-erstellen","post-erstellen","Post erstellen","Automatisch einen fertigen Post-Entwurf erstellen lassen, für LinkedIn, Blog oder andere Kanäle.",[],{"path":160,"slug":161,"title":162,"summary":163,"position":86,"children":164},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Faufgaben\u002Fideen-erstellen","ideen-erstellen","Ideen erstellen","Mehrere Content-Ideen für einen bestimmten Kanal erstellen lassen, z.B. für LinkedIn oder Blog.",[],{"path":166,"slug":167,"title":168,"summary":169,"position":18,"children":170},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Faufgaben\u002Fideen-automatisch-erstellen","ideen-automatisch-erstellen","Ideen automatisch erstellen","Content-Ideen erstellen lassen, die automatisch den passenden Kanälen und Strategieelementen zugeordnet werden.",[],{"path":172,"slug":173,"title":174,"summary":175,"position":176,"children":177},"\u002Fde\u002Fhilfe\u002Fautomationen\u002Faufgaben\u002Femail-zusammenfassung","email-zusammenfassung","E-Mail-Zusammenfassung","Ergebnisse einer Content-Automation per E-Mail an den Absender zurückschicken.",4,[],{"path":179,"slug":180,"title":181,"summary":182,"position":86,"children":183},"\u002Fde\u002Fhilfe\u002Fapi","api","Integration mit anderen Systemen","Anbindung an deine Tools, technische Referenz und Single Sign-On",[184,204,239],{"path":185,"slug":186,"title":187,"summary":188,"position":73,"children":189},"\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started","getting-started","Getting Started","Learn the basics of using the Wortfreunde API",[190,196,202],{"path":191,"slug":192,"title":193,"summary":194,"position":67,"children":195},"\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started\u002Foverview","overview","Overview","Complete API documentation for Wortfreunde services",[],{"path":197,"slug":198,"title":199,"summary":200,"position":86,"children":201},"\u002Fde\u002Fhilfe\u002Fapi\u002Fgetting-started\u002Fauthentication","authentication","Authentication","How to authenticate with the Wortfreunde API",[],{"path":6,"slug":7,"title":14,"summary":15,"position":18,"children":203},[],{"path":205,"slug":206,"title":207,"summary":208,"position":86,"children":209},"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference","api-reference","API Reference","Detailed documentation of all API endpoints",[210,216,222,228,232],{"path":211,"slug":212,"title":213,"summary":214,"position":73,"children":215},"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fendpoints","endpoints","Endpoints","Complete reference of all Wortfreunde API endpoints",[],{"path":217,"slug":218,"title":219,"summary":220,"position":86,"children":221},"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fusers","users","Users","API endpoints for user management",[],{"path":223,"slug":224,"title":225,"summary":226,"position":18,"children":227},"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fchannels","channels","Channels","API endpoints for listing and retrieving channels",[],{"path":229,"slug":71,"title":72,"summary":230,"position":176,"children":231},"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fposts","API endpoints for listing and retrieving posts within a channel",[],{"path":233,"slug":234,"title":235,"summary":236,"position":237,"children":238},"\u002Fde\u002Fhilfe\u002Fapi\u002Fapi-reference\u002Fwebhooks","webhooks","Webhooks","Receive real-time notifications when content changes in Wortfreunde",5,[],{"path":240,"slug":241,"title":242,"summary":243,"position":18,"children":244},"\u002Fde\u002Fhilfe\u002Fapi\u002Fsso","sso","Single Sign On","Single Sign-On integration for external systems",[245,251],{"path":246,"slug":247,"title":248,"summary":249,"position":73,"children":250},"\u002Fde\u002Fhilfe\u002Fapi\u002Fsso\u002Fget-access-tokens","get-access-tokens","Get Access Tokens","Create one-time SSO login tokens to authenticate users from external systems",[],{"path":252,"slug":253,"title":254,"summary":255,"position":86,"children":256},"\u002Fde\u002Fhilfe\u002Fapi\u002Fsso\u002Fchromeless-mode","chromeless-mode","Chromeless Mode","Embed Studio pages without navigation, ideal for intranets, SharePoint or external portals",[],[258,267,297],{"title":259,"links":260},"Angebot",[261,262,263,264,265,266],{"title":24,"href":25},{"title":32,"href":33},{"title":51,"href":52},{"title":41,"href":42},{"title":38,"href":39},{"title":44,"href":45},{"title":268,"links":269},"Themen",[270,273,276,279,282,285,288,291,294],{"title":271,"href":272},"Content-Strategie","\u002Fde\u002Fcontent-strategie",{"title":274,"href":275},"Positionierung","\u002Fde\u002Fpositionierung",{"title":277,"href":278},"SEO","\u002Fde\u002Fseo",{"title":280,"href":281},"KI","\u002Fde\u002Fki",{"title":283,"href":284},"Kosten","\u002Fde\u002Fcontent-marketing-kosten",{"title":286,"href":287},"B2B-Vertrieb","\u002Fde\u002Fb2b-vertrieb",{"title":289,"href":290},"LinkedIn","\u002Fde\u002Flinkedin-fuer-unternehmer",{"title":292,"href":293},"Blog","\u002Fde\u002Fblog-fuer-unternehmer",{"title":295,"href":296},"LinkedIn Guide","\u002Fde\u002Flinkedin",{"title":298,"links":299},"Sonstiges",[300,301,304,305,308,311],{"title":59,"href":58},{"title":302,"href":303},"Updates","\u002Fde\u002Fupdates",{"title":47,"href":48},{"title":306,"href":307},"Impressum","\u002Fde\u002Fimpressum",{"title":309,"href":310},"Datenschutz","\u002Fde\u002Fdatenschutz",{"title":312,"href":313},"AGB","\u002Fde\u002Fagb"]