Find an API

Search public APIs with auth details & Postman guides

← All APIs

Zalando Shop

zalando · Commerce

Commerce No Auth Free & Open ecommerce

The shop API empowers developers to build amazing new apps or websites using Zalando shop data and services.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get Article Reviews

Zalando API Article Reviews Schema

https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews?page=1&sort=newest&fields=example&pageSize=example&articleId=example&maxStarRating=example&minStarRating=example&articleModelId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews?page=1&sort=newest&fields=example&pageSize=example&articleId=example&maxStarRating=example&minStarRating=example&articleModelId=example"
import requests
params = {
    "page": "1",
    "sort": "newest",
    "fields": "example",
    "pageSize": "example",
    "articleId": "example",
    "maxStarRating": "example",
    "minStarRating": "example",
    "articleModelId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews');
url.searchParams.set('page', '1');
url.searchParams.set('sort', 'newest');
url.searchParams.set('fields', 'example');
url.searchParams.set('pageSize', 'example');
url.searchParams.set('articleId', 'example');
url.searchParams.set('maxStarRating', 'example');
url.searchParams.set('minStarRating', 'example');
url.searchParams.set('articleModelId', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("sort", "newest")
	q.Set("fields", "example")
	q.Set("pageSize", "example")
	q.Set("articleId", "example")
	q.Set("maxStarRating", "example")
	q.Set("minStarRating", "example")
	q.Set("articleModelId", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews")
uri.query = URI.encode_www_form({
  "page" => "1",
  "sort" => "newest",
  "fields" => "example",
  "pageSize" => "example",
  "articleId" => "example",
  "maxStarRating" => "example",
  "minStarRating" => "example",
  "articleModelId" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews?" . http_build_query([
    "page" => "1",
    "sort" => "newest",
    "fields" => "example",
    "pageSize" => "example",
    "articleId" => "example",
    "maxStarRating" => "example",
    "minStarRating" => "example",
    "articleModelId" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get Article Reviews Summaries

Zalando API Article Reviews Summaries Schema

https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries?page=1&fields=example&pageSize=example&articleModelId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries?page=1&fields=example&pageSize=example&articleModelId=example"
import requests
params = {
    "page": "1",
    "fields": "example",
    "pageSize": "example",
    "articleModelId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries');
url.searchParams.set('page', '1');
url.searchParams.set('fields', 'example');
url.searchParams.set('pageSize', 'example');
url.searchParams.set('articleModelId', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("fields", "example")
	q.Set("pageSize", "example")
	q.Set("articleModelId", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries")
uri.query = URI.encode_www_form({
  "page" => "1",
  "fields" => "example",
  "pageSize" => "example",
  "articleModelId" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/zalando.com/v1.0/article-reviews-summaries?" . http_build_query([
    "page" => "1",
    "fields" => "example",
    "pageSize" => "example",
    "articleModelId" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Shop Brands

Zalando API Brands Schema

https://api.apis.guru/v2/specs/zalando.com/v1.0/brands?key=YOUR_API_KEY&name=test&page=1&fields=example&pageSize=example&brandFamilyKey=example&brandFamilyName=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/zalando.com/v1.0/brands?key=YOUR_API_KEY&name=test&page=1&fields=example&pageSize=example&brandFamilyKey=example&brandFamilyName=example"
import requests
params = {
    "key": "YOUR_API_KEY",
    "name": "test",
    "page": "1",
    "fields": "example",
    "pageSize": "example",
    "brandFamilyKey": "example",
    "brandFamilyName": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/zalando.com/v1.0/brands",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/zalando.com/v1.0/brands');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('name', 'test');
url.searchParams.set('page', '1');
url.searchParams.set('fields', 'example');
url.searchParams.set('pageSize', 'example');
url.searchParams.set('brandFamilyKey', 'example');
url.searchParams.set('brandFamilyName', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/zalando.com/v1.0/brands")
	q := baseURL.Query()
	q.Set("key", "YOUR_API_KEY")
	q.Set("name", "test")
	q.Set("page", "1")
	q.Set("fields", "example")
	q.Set("pageSize", "example")
	q.Set("brandFamilyKey", "example")
	q.Set("brandFamilyName", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/zalando.com/v1.0/brands")
uri.query = URI.encode_www_form({
  "key" => "YOUR_API_KEY",
  "name" => "test",
  "page" => "1",
  "fields" => "example",
  "pageSize" => "example",
  "brandFamilyKey" => "example",
  "brandFamilyName" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/zalando.com/v1.0/brands?" . http_build_query([
    "key" => "YOUR_API_KEY",
    "name" => "test",
    "page" => "1",
    "fields" => "example",
    "pageSize" => "example",
    "brandFamilyKey" => "example",
    "brandFamilyName" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Zalando Shop?

Zalando Shop is a Commerce API. Developers commonly use commerce APIs for:

  • syncing product catalogues and inventory levels
  • building price comparison and deal-finder tools
  • processing orders and tracking shipments
  • managing customer wishlists and reviews
  • automating abandoned-cart and promotional emails

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Zalando Shop is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗