
{"id":5,"date":"2015-07-28T14:04:44","date_gmt":"2015-07-28T12:04:44","guid":{"rendered":"http:\/\/blog.proclima.com\/api\/?p=5"},"modified":"2024-10-18T21:12:52","modified_gmt":"2024-10-18T21:12:52","slug":"api-documentation-eng","status":"publish","type":"post","link":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/","title":{"rendered":"API documentation"},"content":{"rendered":"\n<p>Hello to all international customors, we provide all product information as a JSON REST API. Feel free to use the API for your own website or any other your fancy web project.<\/p>\n\n\n\n<p>If you have any questions or feedback: <a href=\"mailto:malte.gerth@proclima.com\">malte.gerth@proclima.com<\/a><\/p>\n\n\n\n<h1 class=\"wp-block-heading\">REST API<\/h1>\n\n\n\n<p>With this REST API, you can query data about pro clima products in order to use them in a web store, for example. Using the API ensures that all product data is always up to date.<\/p>\n\n\n\n<p>You can use a browser to explore the api:<br><a href=\"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/\">https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/<\/a><\/p>\n\n\n\n<p>The most interesting resource might be be the product endpoint.<br>For example Intello Plus &#8211; <a href=\"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/product\/4026639011992\/\">https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/product\/4026639011992\/<\/a><\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Authentication<\/h1>\n\n\n\n<p>Authentication works via an API Token. You have to set the <code>Authorization<\/code> header to <code>Token YOUR_TOKEN_HERE<\/code>. You can see your actual token when browsing the API documentation on <a href=\"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/docs\/\">https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/docs\/<\/a> (which unfortunately is completely in German at the moment). At the end of this document you can see a few examples of how you might be able to use the API from different programming languages.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Language<\/h1>\n\n\n\n<p>The output language can be chose by appending e.g. <code>?language=en-gb<\/code> to the url. List of available languages:<br><a href=\"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/language\/\">https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/language\/<\/a><\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Product<\/h1>\n\n\n\n<p>A product is identified by its [GTIN-13].<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Product fields<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Basic fields<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>name: The name of the product.\ngtin: The GTIN-13 of the product.\nlanguage: The record language.\nabas_id: pro clima internal product identifier (not unique)\nitem_number: The pro clima item number for this product.\nprice: The price of the product in Euro.\navailability: The product availability. One of \"unknown\", \"available\", \"limited\", \"not_available\".\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Dimensions &amp; Units<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>length: Length if applicable.\nwidth: Width if applicable.\nheight: Height if applicable.\narea: Area if applicable.\njoint: Joint width if applicable.\nweight: Weight if applicable.\nfolded: A boolean if applicable. (Some Intello Plus with 3m width is folded to 1.6 meters)\n\ntrade_unit: Name of the smallest available unit, e.g. Roll\n\npackaging_unit: Name of the packaging unit, e.g. Box\npackaging_unit_quantity: Number of trade units per packaging unit\n\nbundle_unit = Name of the bundle unit, e.g. PAL\nbundle_unit_quantity = Number of trade units per bundle_unit\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Texts<\/h3>\n\n\n\n<p>Where markup (HTML) is returned it is clean and will mostly consist of paragraphs and lists.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>erp_description: Plain text description of the product for use in e.g. ERP systems.\nerp_description_short: Short version of erp_description.\n\nintro: A short plain text description of the product.\n\napplication: HTML describing where in construction the product is used.\napplication_short: Same as application, but shorter and plain text.\n\nadvantages: HTML listing the advantages of the product.\nsubstrate: HTML describing the substrate on which the product may be applied (mostly used for adhesives).\nlimiting_factors: HTML describing things that need to be observed when using the product.\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Images &amp; PDFs<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>datasheet: A link to the product datasheet (pdf).\nsafety_datasheet: A link to the product safety datasheet (pdf). Empty string if none exists.\ndeclaration_of_performance: A link to the declaration of performance (pdf). Empty string if none exists.\n\nimage: A link to an image of the product.\nbanner: A link to an image of the product containing the product name.\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">More attributes<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>attributes: A list of  attributes, mostly containing specifications that are measured\n            according to certain norms and regulations, like e.g. the fire class\n\n            &#91;{\"name\": \"Fire class\", \"norm\": \"BS EN 13501-1\", \"value\": \"E\"}, ...]\n\nmaterials : A list of materials the products is made of\n\n            &#91;{\"name\": \"Inner lining\", \"value\": \"Paper\"}, ...]\n<\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\">Examples<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">PHP<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\nfunction getProductData($gtin){\n    $context = stream_context_create(\n        array(\"http\" =&gt; array(\"header\" =&gt; \"Authorization: Token YOUR_TOKEN_HERE\")));\n    $product_data = file_get_contents(\"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/product\/${gtin}\/\", false, $context);\n    return json_decode($product_data, true);\n}\n$product = getProductData(\"4026639011992\");\n\necho \"&lt;h2&gt;${product&#91;\"name\"]}&lt;\/h2&gt;\\n\";\n\nif ($product&#91;\"intro\"]) {\n    echo \"&lt;p&gt;${product&#91;\"intro\"]}&lt;\/p&gt;\\n\";\n}\n\necho \"&lt;a href='${product&#91;\"datasheet\"]}'&gt;Datenblatt&lt;\/a&gt;\";\n\nif ($product&#91;\"limiting_factors\"]) {\n    echo \"&lt;h3&gt;Rahmenbedingungen&lt;\/h3&gt;\\n\";\n    echo \"&lt;p&gt;${product&#91;\"limiting_factors\"]}&lt;\/p&gt;\\n\";\n}\n\necho \"&lt;h2&gt;Eigenschaften&lt;\/h2&gt;\";\necho \"&lt;table&gt;\";\necho \"&lt;tr&gt;&lt;th&gt;Name&lt;\/th&gt;&lt;th&gt;Norm&lt;\/th&gt;&lt;th&gt;Wert&lt;\/th&gt;&lt;\/tr&gt;\\n\";\nforeach($product&#91;\"attributes\"] as $attribute) {\n    echo \"&lt;tr&gt;\";\n    echo \"&lt;td&gt;${attribute&#91;\"name\"]}&lt;\/td&gt;\\n\";\n    echo \"&lt;td&gt;${attribute&#91;\"norm\"]}&lt;\/td&gt;\\n\";\n    echo \"&lt;td&gt;${attribute&#91;\"value\"]}&lt;\/td&gt;\\n\";\n    echo \"&lt;\/tr&gt;\";\n}\necho \"&lt;\/table&gt;\";\n\necho \"&lt;h2&gt;Materialien&lt;\/h2&gt;\";\necho \"&lt;table&gt;\";\necho \"&lt;tr&gt;&lt;th&gt;Name&lt;\/th&gt;&lt;th&gt;Wert&lt;\/th&gt;&lt;\/tr&gt;\\n\";\nforeach($product&#91;\"materials\"] as $material) {\n    echo \"&lt;tr&gt;\";\n    echo \"&lt;td&gt;${material&#91;\"name\"]}&lt;\/td&gt;\\n\";\n    echo \"&lt;td&gt;${material&#91;\"value\"]}&lt;\/td&gt;\\n\";\n    echo \"&lt;\/tr&gt;\";\n}\necho \"&lt;\/table&gt;\";\n?&gt;\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Python<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>import json\nimport urllib2\n\n\ndef get_product_data(gtin):\n    request = urllib2.Request(\"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/product\/%s\/\" % (gtin, ),\n                              headers={\"Authorization\": \"Token YOUR_TOKEN_HERE\"})\n    response = urllib2.urlopen(request)\n    return json.loads(response.read())\n\ndata = get_product_data(\"4026639011992\")\nprint u\"%s: %s\" % (data&#91;'name'], data&#91;'intro'])\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Bash &amp; Curl<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>curl --header \"Authorization: Token YOUR_TOKEN_HERE\" \"https:\/\/proclima-pdm.moll-group.eu\/api\/partner\/v1\/product\/4026639011992\/\"\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Hello to all international customors, we provide all product information as a JSON REST API. Feel free to use the API for your own website <a href=\"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/\" rel=\"bookmark\">&#8230;<\/a><\/p>\n","protected":false},"author":38,"featured_media":29,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-5","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>API documentation - API<\/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:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"API documentation - API\" \/>\n<meta property=\"og:description\" content=\"Hello to all international customors, we provide all product information as a JSON REST API. Feel free to use the API for your own website ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/\" \/>\n<meta property=\"og:site_name\" content=\"API\" \/>\n<meta property=\"article:published_time\" content=\"2015-07-28T12:04:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-18T21:12:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.proclima.com\/api\/files\/2015\/07\/walkator-klMii3cR9iI-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"2560\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"malte\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"malte\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/\"},\"author\":{\"name\":\"malte\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#\\\/schema\\\/person\\\/64883ed52d8572dfa5758b2ff833615f\"},\"headline\":\"API documentation\",\"datePublished\":\"2015-07-28T12:04:44+00:00\",\"dateModified\":\"2024-10-18T21:12:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/\"},\"wordCount\":260,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/files\\\/2015\\\/07\\\/walkator-klMii3cR9iI-unsplash-scaled.jpg\",\"articleSection\":[\"API\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/\",\"url\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/\",\"name\":\"API documentation - API\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/files\\\/2015\\\/07\\\/walkator-klMii3cR9iI-unsplash-scaled.jpg\",\"datePublished\":\"2015-07-28T12:04:44+00:00\",\"dateModified\":\"2024-10-18T21:12:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/files\\\/2015\\\/07\\\/walkator-klMii3cR9iI-unsplash-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/files\\\/2015\\\/07\\\/walkator-klMii3cR9iI-unsplash-scaled.jpg\",\"width\":1920,\"height\":2560},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/2015\\\/07\\\/28\\\/api-documentation-eng\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Start\",\"item\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"API documentation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#website\",\"url\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/\",\"name\":\"API\",\"description\":\"the pro clima product data blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#organization\",\"name\":\"API\",\"url\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/blog.proclima.com\\\/api\\\/files\\\/2024\\\/10\\\/Logo-pro-clima.jpg\",\"contentUrl\":\"http:\\\/\\\/blog.proclima.com\\\/api\\\/files\\\/2024\\\/10\\\/Logo-pro-clima.jpg\",\"width\":1200,\"height\":1391,\"caption\":\"API\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/#\\\/schema\\\/person\\\/64883ed52d8572dfa5758b2ff833615f\",\"name\":\"malte\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6913fb5b74661054f477307575f220cf4abfbc2c93e9ae3d2c2d98252f353a31?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6913fb5b74661054f477307575f220cf4abfbc2c93e9ae3d2c2d98252f353a31?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6913fb5b74661054f477307575f220cf4abfbc2c93e9ae3d2c2d98252f353a31?s=96&d=mm&r=g\",\"caption\":\"malte\"},\"url\":\"https:\\\/\\\/blog.proclima.com\\\/api\\\/author\\\/malte\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"API documentation - API","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:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/","og_locale":"en_US","og_type":"article","og_title":"API documentation - API","og_description":"Hello to all international customors, we provide all product information as a JSON REST API. Feel free to use the API for your own website ...","og_url":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/","og_site_name":"API","article_published_time":"2015-07-28T12:04:44+00:00","article_modified_time":"2024-10-18T21:12:52+00:00","og_image":[{"width":1920,"height":2560,"url":"https:\/\/blog.proclima.com\/api\/files\/2015\/07\/walkator-klMii3cR9iI-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"malte","twitter_card":"summary_large_image","twitter_misc":{"Written by":"malte","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#article","isPartOf":{"@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/"},"author":{"name":"malte","@id":"https:\/\/blog.proclima.com\/api\/#\/schema\/person\/64883ed52d8572dfa5758b2ff833615f"},"headline":"API documentation","datePublished":"2015-07-28T12:04:44+00:00","dateModified":"2024-10-18T21:12:52+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/"},"wordCount":260,"publisher":{"@id":"https:\/\/blog.proclima.com\/api\/#organization"},"image":{"@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.proclima.com\/api\/files\/2015\/07\/walkator-klMii3cR9iI-unsplash-scaled.jpg","articleSection":["API"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/","url":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/","name":"API documentation - API","isPartOf":{"@id":"https:\/\/blog.proclima.com\/api\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#primaryimage"},"image":{"@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.proclima.com\/api\/files\/2015\/07\/walkator-klMii3cR9iI-unsplash-scaled.jpg","datePublished":"2015-07-28T12:04:44+00:00","dateModified":"2024-10-18T21:12:52+00:00","breadcrumb":{"@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#primaryimage","url":"https:\/\/blog.proclima.com\/api\/files\/2015\/07\/walkator-klMii3cR9iI-unsplash-scaled.jpg","contentUrl":"https:\/\/blog.proclima.com\/api\/files\/2015\/07\/walkator-klMii3cR9iI-unsplash-scaled.jpg","width":1920,"height":2560},{"@type":"BreadcrumbList","@id":"https:\/\/blog.proclima.com\/api\/2015\/07\/28\/api-documentation-eng\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Start","item":"https:\/\/blog.proclima.com\/api\/"},{"@type":"ListItem","position":2,"name":"API documentation"}]},{"@type":"WebSite","@id":"https:\/\/blog.proclima.com\/api\/#website","url":"https:\/\/blog.proclima.com\/api\/","name":"API","description":"the pro clima product data blog","publisher":{"@id":"https:\/\/blog.proclima.com\/api\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.proclima.com\/api\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blog.proclima.com\/api\/#organization","name":"API","url":"https:\/\/blog.proclima.com\/api\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.proclima.com\/api\/#\/schema\/logo\/image\/","url":"http:\/\/blog.proclima.com\/api\/files\/2024\/10\/Logo-pro-clima.jpg","contentUrl":"http:\/\/blog.proclima.com\/api\/files\/2024\/10\/Logo-pro-clima.jpg","width":1200,"height":1391,"caption":"API"},"image":{"@id":"https:\/\/blog.proclima.com\/api\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/blog.proclima.com\/api\/#\/schema\/person\/64883ed52d8572dfa5758b2ff833615f","name":"malte","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6913fb5b74661054f477307575f220cf4abfbc2c93e9ae3d2c2d98252f353a31?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6913fb5b74661054f477307575f220cf4abfbc2c93e9ae3d2c2d98252f353a31?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6913fb5b74661054f477307575f220cf4abfbc2c93e9ae3d2c2d98252f353a31?s=96&d=mm&r=g","caption":"malte"},"url":"https:\/\/blog.proclima.com\/api\/author\/malte\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/posts\/5","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/comments?post=5"}],"version-history":[{"count":11,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/posts\/5\/revisions"}],"predecessor-version":[{"id":49,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/posts\/5\/revisions\/49"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/media\/29"}],"wp:attachment":[{"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/media?parent=5"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/categories?post=5"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.proclima.com\/api\/wp-json\/wp\/v2\/tags?post=5"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}