{"id":852,"date":"2025-09-29T07:33:00","date_gmt":"2025-09-29T05:33:00","guid":{"rendered":"https:\/\/rhein-ruhr-informatik.de\/?p=852"},"modified":"2025-08-18T15:54:09","modified_gmt":"2025-08-18T13:54:09","slug":"aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda","status":"publish","type":"post","link":"https:\/\/rhein-ruhr-informatik.de\/en\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/","title":{"rendered":"Building a Serverless REST API with AWS API Gateway and Lambda"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>In modern software development, speed and scalability are crucial. Companies want to deliver features quickly without worrying about maintaining infrastructure. This is where serverless computing shines.<br><br>With AWS Lambda and Amazon API Gateway, developers can build a fully functional REST API without managing servers. AWS automatically takes care of scaling, availability, and billing \u2014 you only pay for the requests that are actually processed.<br><br>In this article, we will explore how to set up a simple REST API using AWS API Gateway and AWS Lambda, with examples in Python.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"484\" src=\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png\" alt=\"\" class=\"wp-image-853\" style=\"width:619px;height:auto\" srcset=\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png 900w, https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7-300x161.png 300w, https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7-768x413.png 768w, https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7-18x10.png 18w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/figure><\/div>\n\n\n<h2 class=\"wp-block-heading\">What is Serverless?<\/h2>\n\n\n\n<p>The term serverless doesn\u2019t mean \u201cno servers\u201d \u2014 servers are still involved, but they are fully managed by the cloud provider. Developers focus only on writing code, while AWS handles:<br><br>\u2013 Provisioning and scaling (from zero to millions of requests)<br>\u2013 High availability<br>\u2013 Security and patching<br>\u2013 Billing based on actual usage<br><br>For REST APIs, the combination of API Gateway and Lambda has become a common pattern. Let\u2019s see how they work together.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Architecture Overview<\/h2>\n\n\n\n<p>The flow looks like this:<br>1. A client (browser, mobile app, Postman) sends a request to an API Gateway endpoint.<br>2. API Gateway routes the request to a configured Lambda function.<br>3. The Lambda function runs your custom code (Python in our case).<br>4. Lambda returns a response, which API Gateway forwards back to the client.<br><br>This simple architecture is powerful because you can connect multiple Lambda functions to different API routes and methods (e.g., GET \/users, POST \/orders).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step-by-Step Setup<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Create a Lambda Function<\/h3>\n\n\n\n<p>1. Log in to the AWS Management Console.<br>2. Go to AWS Lambda \u2192 Create function.<br>3. Choose Author from scratch, give it a name (e.g., hello-world), and select Python 3.x as runtime.<br>4. In the code editor, paste the following function:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import json<br><br>def lambda_handler(event, context):<br>&nbsp;&nbsp;&nbsp; name = event.get(\"queryStringParameters\", {}).get(\"name\", \"World\")<br>&nbsp;&nbsp;&nbsp; return {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \"statusCode\": 200,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \"headers\": {\"Content-Type\": \"application\/json\"},<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;\"body\": json.dumps({\"message\": f\"Hello, {name}!\"})<br>&nbsp;&nbsp;&nbsp; }<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2. Create an API Gateway<\/h3>\n\n\n\n<p>1. Go to Amazon API Gateway \u2192 Create API.<br>2. Choose HTTP API (simpler) or REST API (more configurable). For this tutorial, select HTTP API.<br>3. Create a new API and attach it to your Lambda function (hello-world).<br>4. Deploy the API.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Test the API<\/h3>\n\n\n\n<p>Once deployed, you will get an endpoint URL such as:<br><br><code>https:\/\/abc123.execute-api.us-east-1.amazonaws.com\/default\/hello-world<\/code><br><br>Now test it:<br><br><code>curl \"https:\/\/abc123.execute-api.us-east-1.amazonaws.com\/default\/hello-world?name=Alice\"<\/code><br><br>Response:<br><code>{ \"message\": \"Hello, Alice!\" }<\/code><br><br>Congratulations! You have just built a serverless REST API with AWS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Use API Gateway + Lambda?<\/h2>\n\n\n\n<p>\u2013 Scalability: Handles traffic spikes automatically.<br>\u2013 Cost efficiency: Pay only when functions are executed.<br>\u2013 Simplicity: No server management, no patching, no scaling headaches.<br>\u2013 Flexibility: Connect Lambda to databases (DynamoDB, RDS), queues (SQS), or even event streams (Kinesis).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Next Steps<\/h2>\n\n\n\n<p>What we built is a minimal example. In production, you might:<br>\u2013 Add authentication &amp; authorization (AWS Cognito, IAM policies, custom JWT).<br>\u2013 Use Infrastructure as Code (AWS SAM, CDK, or Terraform).<br>\u2013 Enable logging &amp; monitoring (CloudWatch, X-Ray).<br>\u2013 Connect to other AWS services for full applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>AWS API Gateway and AWS Lambda together make it incredibly easy to create serverless REST APIs. With just a few clicks and a small Python script, you can deploy an endpoint that scales automatically and costs only when used.<br><br>If you are building modern applications, experimenting with microservices, or simply want to avoid server management, this serverless approach is a great starting point.<\/p>","protected":false},"excerpt":{"rendered":"<p>Einf\u00fchrung In der modernen Softwareentwicklung sind Geschwindigkeit und Skalierbarkeit entscheidend. Unternehmen wollen Funktionen schnell bereitstellen, ohne sich um die Wartung von Infrastruktur zu k\u00fcmmern. Genau hier gl\u00e4nzt Serverless Computing. Mit AWS Lambda und Amazon API Gateway k\u00f6nnen Entwickler ein voll funktionsf\u00e4higes REST API erstellen, ohne Server zu betreiben. AWS k\u00fcmmert [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,1,26,27],"tags":[],"class_list":["post-852","post","type-post","status-publish","format-standard","hentry","category-api","category-articles","category-aws","category-serverless"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda - Rhein-Ruhr-Informatik<\/title>\n<meta name=\"description\" content=\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rhein-ruhr-informatik.de\/en\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda - Rhein-Ruhr-Informatik\" \/>\n<meta property=\"og:description\" content=\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rhein-ruhr-informatik.de\/en\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\" \/>\n<meta property=\"og:site_name\" content=\"Rhein-Ruhr-Informatik\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-29T05:33:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-18T13:54:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"484\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Rhein-Ruhr-Informatik\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rhein-Ruhr-Informatik\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\"},\"author\":{\"name\":\"Rhein-Ruhr-Informatik\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/person\/29f8c93b2080ee25df204d589a7f2477\"},\"headline\":\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda\",\"datePublished\":\"2025-09-29T05:33:00+00:00\",\"dateModified\":\"2025-08-18T13:54:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\"},\"wordCount\":553,\"publisher\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#organization\"},\"image\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png\",\"articleSection\":[\"API\",\"Artikel\",\"AWS\",\"Serverless\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\",\"url\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\",\"name\":\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda - Rhein-Ruhr-Informatik\",\"isPartOf\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png\",\"datePublished\":\"2025-09-29T05:33:00+00:00\",\"dateModified\":\"2025-08-18T13:54:09+00:00\",\"description\":\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda\",\"breadcrumb\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage\",\"url\":\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png\",\"contentUrl\":\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rhein-ruhr-informatik.de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#website\",\"url\":\"https:\/\/rhein-ruhr-informatik.de\/\",\"name\":\"Rhein-Ruhr-Informatik\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rhein-ruhr-informatik.de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#organization\",\"name\":\"Rhein-Ruhr-Informatik\",\"url\":\"https:\/\/rhein-ruhr-informatik.de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2024\/02\/logo-2.png\",\"contentUrl\":\"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2024\/02\/logo-2.png\",\"width\":570,\"height\":570,\"caption\":\"Rhein-Ruhr-Informatik\"},\"image\":{\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/person\/29f8c93b2080ee25df204d589a7f2477\",\"name\":\"Rhein-Ruhr-Informatik\",\"sameAs\":[\"https:\/\/rhein-ruhr-informatik.de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda - Rhein-Ruhr-Informatik","description":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda","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:\/\/rhein-ruhr-informatik.de\/en\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/","og_locale":"en_US","og_type":"article","og_title":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda - Rhein-Ruhr-Informatik","og_description":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda","og_url":"https:\/\/rhein-ruhr-informatik.de\/en\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/","og_site_name":"Rhein-Ruhr-Informatik","article_published_time":"2025-09-29T05:33:00+00:00","article_modified_time":"2025-08-18T13:54:09+00:00","og_image":[{"width":900,"height":484,"url":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png","type":"image\/png"}],"author":"Rhein-Ruhr-Informatik","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rhein-Ruhr-Informatik","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#article","isPartOf":{"@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/"},"author":{"name":"Rhein-Ruhr-Informatik","@id":"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/person\/29f8c93b2080ee25df204d589a7f2477"},"headline":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda","datePublished":"2025-09-29T05:33:00+00:00","dateModified":"2025-08-18T13:54:09+00:00","mainEntityOfPage":{"@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/"},"wordCount":553,"publisher":{"@id":"https:\/\/rhein-ruhr-informatik.de\/#organization"},"image":{"@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage"},"thumbnailUrl":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png","articleSection":["API","Artikel","AWS","Serverless"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/","url":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/","name":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda - Rhein-Ruhr-Informatik","isPartOf":{"@id":"https:\/\/rhein-ruhr-informatik.de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage"},"image":{"@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage"},"thumbnailUrl":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png","datePublished":"2025-09-29T05:33:00+00:00","dateModified":"2025-08-18T13:54:09+00:00","description":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda","breadcrumb":{"@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#primaryimage","url":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png","contentUrl":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2025\/08\/image-7.png"},{"@type":"BreadcrumbList","@id":"https:\/\/rhein-ruhr-informatik.de\/2025\/09\/29\/aufbau-eines-serverlosen-rest-apis-mit-aws-api-gateway-und-lambda\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rhein-ruhr-informatik.de\/"},{"@type":"ListItem","position":2,"name":"Aufbau eines serverlosen REST-APIs mit AWS API Gateway und Lambda"}]},{"@type":"WebSite","@id":"https:\/\/rhein-ruhr-informatik.de\/#website","url":"https:\/\/rhein-ruhr-informatik.de\/","name":"Rhein-Ruhr-Informatik","description":"","publisher":{"@id":"https:\/\/rhein-ruhr-informatik.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rhein-ruhr-informatik.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rhein-ruhr-informatik.de\/#organization","name":"Rhein-Ruhr-Informatik","url":"https:\/\/rhein-ruhr-informatik.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/logo\/image\/","url":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2024\/02\/logo-2.png","contentUrl":"https:\/\/rhein-ruhr-informatik.de\/wp-content\/uploads\/2024\/02\/logo-2.png","width":570,"height":570,"caption":"Rhein-Ruhr-Informatik"},"image":{"@id":"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/rhein-ruhr-informatik.de\/#\/schema\/person\/29f8c93b2080ee25df204d589a7f2477","name":"Rhein-Ruhr-Informatik","sameAs":["https:\/\/rhein-ruhr-informatik.de"]}]}},"_links":{"self":[{"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/posts\/852","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/comments?post=852"}],"version-history":[{"count":6,"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/posts\/852\/revisions"}],"predecessor-version":[{"id":861,"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/posts\/852\/revisions\/861"}],"wp:attachment":[{"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/media?parent=852"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/categories?post=852"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rhein-ruhr-informatik.de\/en\/wp-json\/wp\/v2\/tags?post=852"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}