{"id":11449,"date":"2024-04-18T16:04:07","date_gmt":"2024-04-18T14:04:07","guid":{"rendered":"https:\/\/100shoppers.com\/?p=11449"},"modified":"2024-04-18T16:06:47","modified_gmt":"2024-04-18T14:06:47","slug":"manufacturer-products-api-v-1","status":"publish","type":"post","link":"https:\/\/100shoppers.com\/de\/manufacturer-products-api-v-1\/","title":{"rendered":"Manufacturer products API v.1"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-introduction\">Introduction<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Manufacturer products API is intended for manufacturers and allows for downloading information about the manufacturer&#8217;s products, e.g. about their current availability in online stores cooperating with 100SHOPPERS.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">API uses REST architecture and accepts and transmits data in JSON format. The success or error in handling the request is indicated by the appropriate HTTP code of the returned response. The HTTP 200 code means correct execution of the request, other codes indicate an error corresponding to the reported code, e.g. HTTP 401 &#8211; authorization error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-communication\">Communication<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">API is only available using the HTTPS protocol at adm.getbuybox.com.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-authorization\">Authorization<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Each query requires authorization using the API Key (APIkey) and API Secret (APIsecret), which can be generated independently within the <a href=\"https:\/\/adm.getbuybox.com\/pl\/secured\/user\/login\">administration panel<\/a>. The authorization mechanism uses the X-BB-API-Authorization header in which the sequence constructed according to the following pattern should be transferred.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-json\" data-lang=\"JSON\" data-show-lang=\"0\"><code>X-BB-API-Authorization: APIkey:signature\nsignature = HMAC-SHA1( APIsecret, UTF-8-Encoding-Of( stringToSign ) ) \n);\nstringToSign = HTTP-VERB + &quot; &quot; + requestPath + &quot;\\n&quot; + JSONPayload;\n<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-get-query-example\">GET query example<\/h2>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-json\" data-lang=\"JSON\"><code>GET \/api\/v1\/producer-products\/availability\n\nstringToSign = GET \/api\/v1\/producer-products\/availability\\n<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-methods\">Methods <\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Downloading information about the availability of products.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-request\">Request<\/h2>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-json\" data-lang=\"JSON\"><code>GET \thttps:\/\/adm.getbuybox.com\/api\/v1\/producer-products\/availability<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-parameters\">Parameters<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">None<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-content-of-the-method-call\">Content of the method call <\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">None<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-response\">Response<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In the case of success, the method returns the following structure in JSON format. E.g.:\\<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-json\" data-lang=\"JSON\" data-show-lang=\"0\"><code>[\n\u00a0 \u00a0{\n\u00a0 \u00a0 \u00a0 &quot;ean&quot;: &quot;1234567890123&quot;,\n\u00a0 \u00a0 \u00a0 &quot;availability&quot;: [\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0{\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &quot;shop&quot;: &quot;mediaexpert.pl&quot;,\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &quot;available&quot;: true\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0},\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0{\n\t \u00a0 \u00a0&quot;shop&quot;: &quot;MediaMarkt&quot;,\n\t \u00a0 \u00a0&quot;available&quot;: true\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0}\n\u00a0 \u00a0 \u00a0 ]\n\u00a0 \u00a0},\n\u00a0 \u00a0{\n\u00a0 \u00a0 \u00a0 &quot;ean&quot;: &quot;1234567890124&quot;,\n\u00a0 \u00a0 \u00a0 &quot;availability&quot;: [\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0{\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &quot;shop&quot;: &quot;mediaexpert.pl&quot;,\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &quot;available&quot;: false\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0},\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0{\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &quot;shop&quot;: &quot;MediaMarkt&quot;,\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &quot;available&quot;: true\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0}\n\u00a0 \u00a0 \u00a0 ]\n\u00a0 \u00a0}\n]\n\n<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Downloading information about manufacturer&#8217;s products<\/p>","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[106],"tags":[],"class_list":["post-11449","post","type-post","status-publish","format-standard","hentry","category-api-integrations"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.8 (Yoast SEO v28.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Manufacturer products API v.1 - 100Shoppers<\/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:\/\/100shoppers.com\/de\/manufacturer-products-api-v-1\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Manufacturer products API v.1\" \/>\n<meta property=\"og:description\" content=\"Downloading information about manufacturer&#039;s products\" \/>\n<meta property=\"og:url\" content=\"https:\/\/100shoppers.com\/de\/manufacturer-products-api-v-1\/\" \/>\n<meta property=\"og:site_name\" content=\"100Shoppers\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-18T14:04:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-18T14:06:47+00:00\" \/>\n<meta name=\"author\" content=\"Joanna Kaczmarek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Joanna Kaczmarek\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/\"},\"author\":{\"name\":\"Joanna Kaczmarek\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#\\\/schema\\\/person\\\/15522deedd2e86d7ac60378541c0846f\"},\"headline\":\"Manufacturer products API v.1\",\"datePublished\":\"2024-04-18T14:04:07+00:00\",\"dateModified\":\"2024-04-18T14:06:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/\"},\"wordCount\":183,\"publisher\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#organization\"},\"articleSection\":[\"API &amp; integrations\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/\",\"url\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/\",\"name\":\"Manufacturer products API v.1 - 100Shoppers\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#website\"},\"datePublished\":\"2024-04-18T14:04:07+00:00\",\"dateModified\":\"2024-04-18T14:06:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/manufacturer-products-api-v-1\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/100shoppers.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help Center\",\"item\":\"https:\\\/\\\/100shoppers.com\\\/category\\\/help-center\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"API &amp; integrations\",\"item\":\"https:\\\/\\\/100shoppers.com\\\/category\\\/help-center\\\/api-integrations\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Manufacturer products API v.1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#website\",\"url\":\"https:\\\/\\\/100shoppers.com\\\/\",\"name\":\"100Shoppers\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/100shoppers.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#organization\",\"name\":\"100Shoppers\",\"url\":\"https:\\\/\\\/100shoppers.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/100shoppers.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/logo.webp\",\"contentUrl\":\"https:\\\/\\\/100shoppers.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/logo.webp\",\"width\":1024,\"height\":111,\"caption\":\"100Shoppers\"},\"image\":{\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/#\\\/schema\\\/person\\\/15522deedd2e86d7ac60378541c0846f\",\"name\":\"Joanna Kaczmarek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/100shoppers.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/cropped-asia-96x96.png\",\"url\":\"https:\\\/\\\/100shoppers.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/cropped-asia-96x96.png\",\"contentUrl\":\"https:\\\/\\\/100shoppers.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/cropped-asia-96x96.png\",\"caption\":\"Joanna Kaczmarek\"},\"url\":\"https:\\\/\\\/100shoppers.com\\\/de\\\/author\\\/j-kaczmarek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Manufacturer products API v.1 - 100Shoppers","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:\/\/100shoppers.com\/de\/manufacturer-products-api-v-1\/","og_locale":"de_DE","og_type":"article","og_title":"Manufacturer products API v.1","og_description":"Downloading information about manufacturer's products","og_url":"https:\/\/100shoppers.com\/de\/manufacturer-products-api-v-1\/","og_site_name":"100Shoppers","article_published_time":"2024-04-18T14:04:07+00:00","article_modified_time":"2024-04-18T14:06:47+00:00","author":"Joanna Kaczmarek","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Joanna Kaczmarek","Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/#article","isPartOf":{"@id":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/"},"author":{"name":"Joanna Kaczmarek","@id":"https:\/\/100shoppers.com\/#\/schema\/person\/15522deedd2e86d7ac60378541c0846f"},"headline":"Manufacturer products API v.1","datePublished":"2024-04-18T14:04:07+00:00","dateModified":"2024-04-18T14:06:47+00:00","mainEntityOfPage":{"@id":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/"},"wordCount":183,"publisher":{"@id":"https:\/\/100shoppers.com\/#organization"},"articleSection":["API &amp; integrations"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/","url":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/","name":"Manufacturer products API v.1 - 100Shoppers","isPartOf":{"@id":"https:\/\/100shoppers.com\/#website"},"datePublished":"2024-04-18T14:04:07+00:00","dateModified":"2024-04-18T14:06:47+00:00","breadcrumb":{"@id":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/100shoppers.com\/manufacturer-products-api-v-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/100shoppers.com\/"},{"@type":"ListItem","position":2,"name":"Help Center","item":"https:\/\/100shoppers.com\/category\/help-center\/"},{"@type":"ListItem","position":3,"name":"API &amp; integrations","item":"https:\/\/100shoppers.com\/category\/help-center\/api-integrations\/"},{"@type":"ListItem","position":4,"name":"Manufacturer products API v.1"}]},{"@type":"WebSite","@id":"https:\/\/100shoppers.com\/#website","url":"https:\/\/100shoppers.com\/","name":"100Shoppers","description":"","publisher":{"@id":"https:\/\/100shoppers.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/100shoppers.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/100shoppers.com\/#organization","name":"100Shoppers","url":"https:\/\/100shoppers.com\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/100shoppers.com\/#\/schema\/logo\/image\/","url":"https:\/\/100shoppers.com\/wp-content\/uploads\/2025\/05\/logo.webp","contentUrl":"https:\/\/100shoppers.com\/wp-content\/uploads\/2025\/05\/logo.webp","width":1024,"height":111,"caption":"100Shoppers"},"image":{"@id":"https:\/\/100shoppers.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/100shoppers.com\/#\/schema\/person\/15522deedd2e86d7ac60378541c0846f","name":"Joanna Kaczmarek","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/100shoppers.com\/wp-content\/uploads\/2022\/10\/cropped-asia-96x96.png","url":"https:\/\/100shoppers.com\/wp-content\/uploads\/2022\/10\/cropped-asia-96x96.png","contentUrl":"https:\/\/100shoppers.com\/wp-content\/uploads\/2022\/10\/cropped-asia-96x96.png","caption":"Joanna Kaczmarek"},"url":"https:\/\/100shoppers.com\/de\/author\/j-kaczmarek\/"}]}},"_links":{"self":[{"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/posts\/11449","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/comments?post=11449"}],"version-history":[{"count":1,"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/posts\/11449\/revisions"}],"predecessor-version":[{"id":11452,"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/posts\/11449\/revisions\/11452"}],"wp:attachment":[{"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/media?parent=11449"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/categories?post=11449"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/100shoppers.com\/de\/wp-json\/wp\/v2\/tags?post=11449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}