Get category by id

GET /shops/@shop/categories/@id

Request

Optional authentication

You can use authentication for this request, but it is not required. Always provide the access_token when you have one. It may affect the response.

Header Value
Authorization Optional. Set the value to Bearer + + access_token

URL parameters

Replace the @ keywords in the URL with their corresponding value.

A dictionary with fields

Field Type Description
shop Int An integer value
id Int An integer value

Example request 1

GET /shops/16/categories/14 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.9.0
Accept-Language: en-US,en;q=0.5

Response

Field Type Description
id Int Id of the category
name String Translated category name
banner Image? Nullable.
only_order_in_store Bool Whether the products in this category can only get ordered in the store with a separate UI for the shop employees, and not in the public webshop. Note that you will never receive products with this property set to true if you are not authorized.
image Image? Nullable. Image that should be used in square environments, e.g. category overview
messages [String] Array of String
products [Product.detailed] Array of Product.detailed
seo company.SeoData Optional. Product page SEO metatags

Example response 1

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 74464

{
    "id": 14,
    "name": "Dr. Oliver Hand Sr.",
    "banner": {
        "resolutions": [
            {
                "src": "https://example.com",
                "width": 600,
                "height": 350
            },
            {
                "src": "https://example.com",
                "width": 600,
                "height": 350
            },
            {
                "src": "https://example.com",
                "width": 600,
                "height": 350
            }
        ],
        "file_id": 11,
        "white_background": false
    },
    "only_order_in_store": false,
    "image": {
        "resolutions": [
            {
                "src": "https://example.com",
                "width": 600,
                "height": 350
            },
            {
                "src": "https://example.com",
                "width": 600,
                "height": 350
            },
            {
                "src": "https://example.com",
                "width": 600,
                "height": 350
            }
        ],
        "file_id": 17,
        "white_background": false
    },
    "messages": [
        "...",
        "...",
        "..."
    ],
    "products": [
        {
            "id": 15,
            "name": "...",
            "images": [
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 14,
                    "white_background": false
                },
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 15,
                    "white_background": true
                },
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 15,
                    "white_background": true
                }
            ],
            "price_type": "PER_UNIT",
            "target_price": true,
            "price": {
                "value": 19,
                "currency": "EUR"
            },
            "only_order_in_store": false,
            "subtitle": "...",
            "description": "...",
            "allergens": [
                {
                    "id": 14,
                    "name": "Mustard"
                },
                {
                    "id": 19,
                    "name": "Crustaceans"
                },
                {
                    "id": 13,
                    "name": "Nuts"
                }
            ],
            "url": "https://example.com",
            "url_type": "none",
            "specialty": true,
            "favourite": true,
            "product_prices": [
                {
                    "id": 16,
                    "name": "...",
                    "price": {
                        "value": 18,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 12,
                        "y": 18,
                        "percentage": 16,
                        "minimum": 16,
                        "offer": {
                            "id": 12,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 18,
                            "recurring_on": {
                                "day_1": 14,
                                "day_2": 10,
                                "day_3": 11,
                                "day_4": 14,
                                "day_5": 15,
                                "day_6": 16,
                                "day_7": 16
                            }
                        },
                        "applies_to": "category",
                        "item_id": 12
                    }
                },
                {
                    "id": 16,
                    "name": "...",
                    "price": {
                        "value": 19,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 12,
                        "y": 12,
                        "percentage": 10,
                        "minimum": 10,
                        "offer": {
                            "id": 18,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 15,
                            "recurring_on": {
                                "day_1": 19,
                                "day_2": 12,
                                "day_3": 16,
                                "day_4": 18,
                                "day_5": 11,
                                "day_6": 17,
                                "day_7": 14
                            }
                        },
                        "applies_to": "category",
                        "item_id": 10
                    }
                },
                {
                    "id": 18,
                    "name": "...",
                    "price": {
                        "value": 10,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 15,
                        "y": 10,
                        "percentage": 16,
                        "minimum": 14,
                        "offer": {
                            "id": 16,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 13,
                            "recurring_on": {
                                "day_1": 17,
                                "day_2": 11,
                                "day_3": 17,
                                "day_4": 17,
                                "day_5": 16,
                                "day_6": 19,
                                "day_7": 19
                            }
                        },
                        "applies_to": "category",
                        "item_id": 16
                    }
                }
            ],
            "optionsets": [
                {
                    "id": 11,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": true,
                    "choose_amount": false,
                    "min_different_options": 19,
                    "max_different_options": 11,
                    "min_amount_options": 15,
                    "max_amount_options": 15,
                    "options": [
                        {
                            "id": 16,
                            "name": "...",
                            "price_change": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 15,
                                "white_background": false
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 16,
                            "name": "...",
                            "price_change": {
                                "value": 10,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 16,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 15,
                            "name": "...",
                            "price_change": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 12,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                },
                {
                    "id": 11,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": true,
                    "choose_amount": true,
                    "min_different_options": 11,
                    "max_different_options": 10,
                    "min_amount_options": 16,
                    "max_amount_options": 13,
                    "options": [
                        {
                            "id": 12,
                            "name": "...",
                            "price_change": {
                                "value": 19,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 11,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 13,
                            "name": "...",
                            "price_change": {
                                "value": 15,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 18,
                                "white_background": true
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 16,
                            "name": "...",
                            "price_change": {
                                "value": 14,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 13,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                },
                {
                    "id": 11,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": true,
                    "choose_amount": false,
                    "min_different_options": 15,
                    "max_different_options": 10,
                    "min_amount_options": 13,
                    "max_amount_options": 12,
                    "options": [
                        {
                            "id": 13,
                            "name": "...",
                            "price_change": {
                                "value": 10,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 16,
                                "white_background": true
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 18,
                            "name": "...",
                            "price_change": {
                                "value": 18,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 11,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 17,
                            "name": "...",
                            "price_change": {
                                "value": 11,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 16,
                                "white_background": true
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                }
            ],
            "min_max": {
                "amount": {
                    "minimum": 18,
                    "maximum": 10,
                    "suggested": 15
                },
                "weight": {
                    "minimum": 10,
                    "maximum": 10,
                    "suggested": 13
                },
                "persons": {
                    "minimum": 15,
                    "maximum": 18,
                    "suggested": 15
                }
            },
            "info": [
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                },
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                },
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                }
            ],
            "offer": {
                "type": "percentage",
                "x": 12,
                "y": 17,
                "percentage": 16,
                "minimum": 15,
                "offer": {
                    "id": 12,
                    "name": "Black Friday",
                    "from_date": "2019-01-31",
                    "until_date": "2019-01-31",
                    "valid_for": "order",
                    "recurring": 12,
                    "recurring_on": {
                        "day_1": 15,
                        "day_2": 14,
                        "day_3": 16,
                        "day_4": 13,
                        "day_5": 10,
                        "day_6": 14,
                        "day_7": 11
                    }
                },
                "applies_to": "category",
                "item_id": 14
            },
            "soldout": false,
            "stock": {
                "amount": 12
            },
            "soldout_until": "2019-01-31 12:00:00",
            "plu_code": "...",
            "category": {
                "id": 14,
                "name": "..."
            },
            "origin": "...",
            "ingredients": "..."
        },
        {
            "id": 13,
            "name": "...",
            "images": [
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 13,
                    "white_background": false
                },
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 19,
                    "white_background": false
                },
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 12,
                    "white_background": false
                }
            ],
            "price_type": "PER_UNIT",
            "target_price": true,
            "price": {
                "value": 14,
                "currency": "EUR"
            },
            "only_order_in_store": false,
            "subtitle": "...",
            "description": "...",
            "allergens": [
                {
                    "id": 19,
                    "name": "Egg"
                },
                {
                    "id": 10,
                    "name": "Sulphite"
                },
                {
                    "id": 11,
                    "name": "Fish"
                }
            ],
            "url": "https://example.com",
            "url_type": "none",
            "specialty": false,
            "favourite": false,
            "product_prices": [
                {
                    "id": 19,
                    "name": "...",
                    "price": {
                        "value": 15,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 10,
                        "y": 12,
                        "percentage": 15,
                        "minimum": 13,
                        "offer": {
                            "id": 10,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 11,
                            "recurring_on": {
                                "day_1": 19,
                                "day_2": 18,
                                "day_3": 10,
                                "day_4": 19,
                                "day_5": 11,
                                "day_6": 12,
                                "day_7": 10
                            }
                        },
                        "applies_to": "category",
                        "item_id": 17
                    }
                },
                {
                    "id": 12,
                    "name": "...",
                    "price": {
                        "value": 10,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 15,
                        "y": 13,
                        "percentage": 10,
                        "minimum": 15,
                        "offer": {
                            "id": 12,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 19,
                            "recurring_on": {
                                "day_1": 18,
                                "day_2": 17,
                                "day_3": 19,
                                "day_4": 16,
                                "day_5": 19,
                                "day_6": 14,
                                "day_7": 19
                            }
                        },
                        "applies_to": "category",
                        "item_id": 13
                    }
                },
                {
                    "id": 13,
                    "name": "...",
                    "price": {
                        "value": 17,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 13,
                        "y": 17,
                        "percentage": 11,
                        "minimum": 12,
                        "offer": {
                            "id": 16,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 16,
                            "recurring_on": {
                                "day_1": 17,
                                "day_2": 15,
                                "day_3": 11,
                                "day_4": 10,
                                "day_5": 11,
                                "day_6": 16,
                                "day_7": 14
                            }
                        },
                        "applies_to": "category",
                        "item_id": 19
                    }
                }
            ],
            "optionsets": [
                {
                    "id": 19,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": false,
                    "choose_amount": false,
                    "min_different_options": 10,
                    "max_different_options": 19,
                    "min_amount_options": 12,
                    "max_amount_options": 13,
                    "options": [
                        {
                            "id": 12,
                            "name": "...",
                            "price_change": {
                                "value": 14,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 10,
                                "white_background": false
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 18,
                            "name": "...",
                            "price_change": {
                                "value": 18,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 16,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 13,
                            "name": "...",
                            "price_change": {
                                "value": 12,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 17,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                },
                {
                    "id": 16,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": false,
                    "choose_amount": true,
                    "min_different_options": 12,
                    "max_different_options": 16,
                    "min_amount_options": 12,
                    "max_amount_options": 15,
                    "options": [
                        {
                            "id": 12,
                            "name": "...",
                            "price_change": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 18,
                                "white_background": true
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 16,
                            "name": "...",
                            "price_change": {
                                "value": 19,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 15,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 18,
                            "name": "...",
                            "price_change": {
                                "value": 18,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 10,
                                "white_background": false
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                },
                {
                    "id": 19,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": false,
                    "choose_amount": true,
                    "min_different_options": 12,
                    "max_different_options": 18,
                    "min_amount_options": 19,
                    "max_amount_options": 10,
                    "options": [
                        {
                            "id": 19,
                            "name": "...",
                            "price_change": {
                                "value": 16,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 11,
                                "white_background": false
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 13,
                            "name": "...",
                            "price_change": {
                                "value": 19,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 17,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 17,
                            "name": "...",
                            "price_change": {
                                "value": 11,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 18,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                }
            ],
            "min_max": {
                "amount": {
                    "minimum": 13,
                    "maximum": 14,
                    "suggested": 19
                },
                "weight": {
                    "minimum": 14,
                    "maximum": 15,
                    "suggested": 14
                },
                "persons": {
                    "minimum": 17,
                    "maximum": 15,
                    "suggested": 12
                }
            },
            "info": [
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                },
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                },
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                }
            ],
            "offer": {
                "type": "percentage",
                "x": 15,
                "y": 16,
                "percentage": 15,
                "minimum": 19,
                "offer": {
                    "id": 16,
                    "name": "Black Friday",
                    "from_date": "2019-01-31",
                    "until_date": "2019-01-31",
                    "valid_for": "order",
                    "recurring": 16,
                    "recurring_on": {
                        "day_1": 10,
                        "day_2": 13,
                        "day_3": 19,
                        "day_4": 14,
                        "day_5": 16,
                        "day_6": 18,
                        "day_7": 12
                    }
                },
                "applies_to": "category",
                "item_id": 11
            },
            "soldout": false,
            "stock": {
                "amount": 10
            },
            "soldout_until": "2019-01-31 12:00:00",
            "plu_code": "...",
            "category": {
                "id": 19,
                "name": "..."
            },
            "origin": "...",
            "ingredients": "..."
        },
        {
            "id": 16,
            "name": "...",
            "images": [
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 12,
                    "white_background": true
                },
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 11,
                    "white_background": true
                },
                {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "file_id": 11,
                    "white_background": true
                }
            ],
            "price_type": "PER_UNIT",
            "target_price": true,
            "price": {
                "value": 10,
                "currency": "EUR"
            },
            "only_order_in_store": true,
            "subtitle": "...",
            "description": "...",
            "allergens": [
                {
                    "id": 13,
                    "name": "Fish"
                },
                {
                    "id": 10,
                    "name": "Lupine"
                },
                {
                    "id": 16,
                    "name": "Milk"
                }
            ],
            "url": "https://example.com",
            "url_type": "none",
            "specialty": true,
            "favourite": true,
            "product_prices": [
                {
                    "id": 15,
                    "name": "...",
                    "price": {
                        "value": 14,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 11,
                        "y": 17,
                        "percentage": 11,
                        "minimum": 15,
                        "offer": {
                            "id": 10,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 15,
                            "recurring_on": {
                                "day_1": 13,
                                "day_2": 18,
                                "day_3": 11,
                                "day_4": 18,
                                "day_5": 14,
                                "day_6": 11,
                                "day_7": 12
                            }
                        },
                        "applies_to": "category",
                        "item_id": 18
                    }
                },
                {
                    "id": 13,
                    "name": "...",
                    "price": {
                        "value": 17,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 15,
                        "y": 16,
                        "percentage": 16,
                        "minimum": 13,
                        "offer": {
                            "id": 19,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 15,
                            "recurring_on": {
                                "day_1": 19,
                                "day_2": 14,
                                "day_3": 10,
                                "day_4": 13,
                                "day_5": 15,
                                "day_6": 10,
                                "day_7": 12
                            }
                        },
                        "applies_to": "category",
                        "item_id": 10
                    }
                },
                {
                    "id": 17,
                    "name": "...",
                    "price": {
                        "value": 14,
                        "currency": "EUR"
                    },
                    "offer": {
                        "type": "percentage",
                        "x": 15,
                        "y": 14,
                        "percentage": 14,
                        "minimum": 17,
                        "offer": {
                            "id": 18,
                            "name": "Black Friday",
                            "from_date": "2019-01-31",
                            "until_date": "2019-01-31",
                            "valid_for": "order",
                            "recurring": 18,
                            "recurring_on": {
                                "day_1": 17,
                                "day_2": 19,
                                "day_3": 13,
                                "day_4": 10,
                                "day_5": 19,
                                "day_6": 17,
                                "day_7": 14
                            }
                        },
                        "applies_to": "category",
                        "item_id": 11
                    }
                }
            ],
            "optionsets": [
                {
                    "id": 19,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": true,
                    "choose_amount": true,
                    "min_different_options": 11,
                    "max_different_options": 17,
                    "min_amount_options": 19,
                    "max_amount_options": 18,
                    "options": [
                        {
                            "id": 13,
                            "name": "...",
                            "price_change": {
                                "value": 12,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 15,
                                "white_background": false
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 18,
                            "name": "...",
                            "price_change": {
                                "value": 15,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 14,
                                "white_background": true
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 10,
                            "name": "...",
                            "price_change": {
                                "value": 13,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 15,
                                "white_background": false
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                },
                {
                    "id": 12,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": false,
                    "choose_amount": false,
                    "min_different_options": 12,
                    "max_different_options": 12,
                    "min_amount_options": 19,
                    "max_amount_options": 19,
                    "options": [
                        {
                            "id": 12,
                            "name": "...",
                            "price_change": {
                                "value": 15,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 19,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 10,
                            "name": "...",
                            "price_change": {
                                "value": 10,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 12,
                                "white_background": true
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 13,
                            "name": "...",
                            "price_change": {
                                "value": 18,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 17,
                                "white_background": false
                            },
                            "require_image": false,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                },
                {
                    "id": 10,
                    "name": "...",
                    "code": "...",
                    "multiple_choice": true,
                    "choose_amount": true,
                    "min_different_options": 14,
                    "max_different_options": 12,
                    "min_amount_options": 16,
                    "max_amount_options": 19,
                    "options": [
                        {
                            "id": 17,
                            "name": "...",
                            "price_change": {
                                "value": 19,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 15,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 14,
                            "name": "...",
                            "price_change": {
                                "value": 12,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 19,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        },
                        {
                            "id": 18,
                            "name": "...",
                            "price_change": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "image": {
                                "resolutions": [
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    },
                                    {
                                        "src": "https://example.com",
                                        "width": 600,
                                        "height": 350
                                    }
                                ],
                                "file_id": 18,
                                "white_background": true
                            },
                            "require_image": true,
                            "code": "...",
                            "price_calculation": "PER_PIECE"
                        }
                    ]
                }
            ],
            "min_max": {
                "amount": {
                    "minimum": 13,
                    "maximum": 19,
                    "suggested": 13
                },
                "weight": {
                    "minimum": 15,
                    "maximum": 19,
                    "suggested": 12
                },
                "persons": {
                    "minimum": 13,
                    "maximum": 18,
                    "suggested": 11
                }
            },
            "info": [
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                },
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                },
                {
                    "name": "...",
                    "title": "...",
                    "text": "...",
                    "type": "HTML"
                }
            ],
            "offer": {
                "type": "percentage",
                "x": 10,
                "y": 10,
                "percentage": 19,
                "minimum": 12,
                "offer": {
                    "id": 11,
                    "name": "Black Friday",
                    "from_date": "2019-01-31",
                    "until_date": "2019-01-31",
                    "valid_for": "order",
                    "recurring": 12,
                    "recurring_on": {
                        "day_1": 18,
                        "day_2": 11,
                        "day_3": 19,
                        "day_4": 14,
                        "day_5": 13,
                        "day_6": 16,
                        "day_7": 15
                    }
                },
                "applies_to": "category",
                "item_id": 10
            },
            "soldout": false,
            "stock": {
                "amount": 19
            },
            "soldout_until": "2019-01-31 12:00:00",
            "plu_code": "...",
            "category": {
                "id": 18,
                "name": "..."
            },
            "origin": "...",
            "ingredients": "..."
        }
    ],
    "seo": {
        "title": {
            "en": "Architecto sint placeat aut et in qui quia fuga deserunt veniam."
        },
        "description": {
            "en": "Et sapiente id rerum dolor magnam debitis rerum. Facere dignissimos nihil ut. Ut excepturi unde et tempore exercitationem aut. Et nobis ratione vel ab ut. Dolorem molestiae ut laudantium."
        },
        "url": {
            "en": "http://www.hilpert.com/id-optio-suscipit-officia-vitae-occaecati-qui-qui.html"
        }
    }
}
1.9.0 stable