Get shop by id

GET /shops/@id

Request

URL parameters

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

A dictionary with fields

Field Type Description
id Int An integer value

Example request 1

GET /shops/10 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 shop
name String Name of the shop (translated)
address Address.detailed An address
allow_comments Bool A boolean value
url String A String value
allow_order_comments Bool A boolean value
allow_product_comments Bool A boolean value
allow_order_messages Bool A boolean value
global_discount_percentage Int Discount percentage for all products
offers [Offer.detailed] Array of Offer.detailed
images [String: Image] Dictionary of Image with keys of type String
allow_orders Bool A boolean value
delivery_use_intervals Bool A boolean value
categories [Category.simple] Array of Category.simple
category_groups [CategoryGroup] List of category groups. The ids refer to a category in the categories field. Categories without a CategoryGroup should also get displayed.
allow_invoices Bool A boolean value
category_groups_overview Bool Show an overview of all the category groups on the webshop homepage
display_mode String String enumarion of 'blocks', 'list'
takeout_use_intervals Bool A boolean value
joyn_enabled Bool A boolean value
category_overview Bool Show an overview of all the categories on the webshop homepage
fold_category_groups Bool Whether the shop prefers to hide all the categories for all category groups by default
hours [MethodHours] Information about the opening hours, delivery hours... for all available methods and machines
contact Contact Contact details of a shop
messages [Message] You are required to keep track of the messages the user saw. When you receive new messages, you should indicate this in the app with a bubble icon (e.g. red circle with number of new messages)
info [Message] Same as messages, but you shouldn't notify the user when this changes or is received for the first time
status ShopStatus
has_specialties Bool A boolean value
promotion Promotion The info about the shop promotion
delivery Dictionary A dictionary with fields
currency Currency 3 letter ISO 4217 currency name (string)

Example response 1

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

{
    "id": 12,
    "name": "Hallie Parker",
    "address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE",
        "position": {
            "latitude": 1.54361,
            "longitude": 0.45645
        }
    },
    "allow_comments": true,
    "url": "...",
    "allow_order_comments": false,
    "allow_product_comments": false,
    "allow_order_messages": true,
    "global_discount_percentage": 19,
    "offers": [
        {
            "id": 14,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 13,
            "recurring_on": {
                "day_1": 15,
                "day_2": 12,
                "day_3": 16,
                "day_4": 18,
                "day_5": 15,
                "day_6": 14,
                "day_7": 18
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 10,
                    "y": 15,
                    "percentage": 11,
                    "minimum": 15,
                    "applies_to": "category",
                    "item_id": 15
                },
                {
                    "type": "percentage",
                    "x": 18,
                    "y": 10,
                    "percentage": 18,
                    "minimum": 12,
                    "applies_to": "category",
                    "item_id": 11
                },
                {
                    "type": "percentage",
                    "x": 15,
                    "y": 11,
                    "percentage": 10,
                    "minimum": 14,
                    "applies_to": "category",
                    "item_id": 14
                }
            ]
        },
        {
            "id": 12,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 13,
            "recurring_on": {
                "day_1": 15,
                "day_2": 17,
                "day_3": 13,
                "day_4": 16,
                "day_5": 16,
                "day_6": 12,
                "day_7": 14
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 14,
                    "y": 15,
                    "percentage": 10,
                    "minimum": 13,
                    "applies_to": "category",
                    "item_id": 18
                },
                {
                    "type": "percentage",
                    "x": 19,
                    "y": 13,
                    "percentage": 10,
                    "minimum": 18,
                    "applies_to": "category",
                    "item_id": 10
                },
                {
                    "type": "percentage",
                    "x": 12,
                    "y": 19,
                    "percentage": 14,
                    "minimum": 14,
                    "applies_to": "category",
                    "item_id": 10
                }
            ]
        },
        {
            "id": 14,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 13,
            "recurring_on": {
                "day_1": 14,
                "day_2": 13,
                "day_3": 12,
                "day_4": 13,
                "day_5": 15,
                "day_6": 18,
                "day_7": 18
            },
            "items": [
                {
                    "type": "percentage",
                    "x": 10,
                    "y": 12,
                    "percentage": 12,
                    "minimum": 17,
                    "applies_to": "category",
                    "item_id": 19
                },
                {
                    "type": "percentage",
                    "x": 19,
                    "y": 13,
                    "percentage": 13,
                    "minimum": 11,
                    "applies_to": "category",
                    "item_id": 16
                },
                {
                    "type": "percentage",
                    "x": 17,
                    "y": 11,
                    "percentage": 11,
                    "minimum": 15,
                    "applies_to": "category",
                    "item_id": 11
                }
            ]
        }
    ],
    "images": {
        "avatar": {
            "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
        }
    },
    "allow_orders": false,
    "delivery_use_intervals": false,
    "categories": [
        {
            "id": 18,
            "name": "Eladio Pfeffer",
            "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": 15,
                "white_background": true
            },
            "only_order_in_store": true,
            "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
            },
            "seo": {
                "title": {
                    "en": "Reiciendis voluptatem autem omnis ab."
                },
                "description": {
                    "en": "Commodi velit libero voluptates enim quae. Fugit voluptatum aut minus nemo numquam at ratione. Est qui maiores deleniti fugiat consectetur sed doloribus. Velit aspernatur enim vel vero commodi."
                },
                "url": {
                    "en": "http://koelpin.com/vitae-eum-sapiente-rerum-qui.html"
                }
            }
        },
        {
            "id": 19,
            "name": "Jefferey Mante",
            "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": 17,
                "white_background": false
            },
            "only_order_in_store": true,
            "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": false
            },
            "seo": {
                "title": {
                    "en": "Ipsa ab alias eum amet in quos voluptatibus omnis iure mollitia."
                },
                "description": {
                    "en": "Laboriosam ipsum voluptatem eius suscipit quaerat occaecati. Praesentium nihil reiciendis vel sed amet. Eos repellat ut sunt. Qui iste facere officia praesentium."
                },
                "url": {
                    "en": "http://koepp.com/et-et-autem-qui-numquam-voluptatem-tempore-minima-quo.html"
                }
            }
        },
        {
            "id": 10,
            "name": "Prof. Carissa Koch",
            "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": 15,
                "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": 15,
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Quia dolores et est voluptates sit libero recusandae sunt perspiciatis saepe."
                },
                "description": {
                    "en": "Voluptatem in consequuntur cum id. Ex neque impedit quidem ea. Expedita optio temporibus maxime consectetur aut beatae."
                },
                "url": {
                    "en": "http://hahn.net/"
                }
            }
        }
    ],
    "category_groups": [
        {
            "name": "...",
            "category_ids": [
                13,
                18,
                14
            ],
            "id": 14,
            "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": false
            }
        },
        {
            "name": "...",
            "category_ids": [
                19,
                12,
                12
            ],
            "id": 12,
            "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
            }
        },
        {
            "name": "...",
            "category_ids": [
                13,
                11,
                13
            ],
            "id": 14,
            "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
            }
        }
    ],
    "allow_invoices": false,
    "category_groups_overview": false,
    "display_mode": "blocks",
    "takeout_use_intervals": true,
    "joyn_enabled": true,
    "category_overview": true,
    "fold_category_groups": true,
    "hours": [
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "09:35 - 19:44",
                        "09:35 - 19:44",
                        "09:35 - 19:44"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:40 - 21:41",
                        "06:40 - 21:41",
                        "06:40 - 21:41"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:37 - 13:47",
                        "06:37 - 13:47",
                        "06:37 - 13:47"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "06:20 - 16:36",
                        "06:20 - 16:36",
                        "06:20 - 16:36"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "08:32 - 15:12",
                        "08:32 - 15:12",
                        "08:32 - 15:12"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "09:14 - 20:38",
                        "09:14 - 20:38",
                        "09:14 - 20:38"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "08:50 - 11:16",
                        "08:50 - 11:16",
                        "08:50 - 11:16"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:18 - 14:14",
                        "06:18 - 14:14",
                        "06:18 - 14:14"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "08:59 - 15:28",
                        "08:59 - 15:28",
                        "08:59 - 15:28"
                    ]
                }
            ]
        }
    ],
    "contact": {
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE"
        },
        "telephone": "+32 475 00 00 00",
        "vat": "BE0123.456.789",
        "social": {
            "facebook": "https://example.com",
            "twitter": "https://example.com",
            "snapchat": "https://example.com",
            "instagram": "https://example.com",
            "pinterest": "https://example.com",
            "youtube": "https://example.com"
        },
        "website": "https://example.com",
        "email": "example@domain.com"
    },
    "messages": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "info": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "status": {
        "open": {
            "status": "closes-soon",
            "text": "..."
        },
        "takeout": "...",
        "delivery": "...",
        "latch": "..."
    },
    "has_specialties": false,
    "promotion": {
        "is_enabled": false,
        "title": "...",
        "type": "product",
        "id": 14,
        "custom_image_enabled": true,
        "photo": {
            "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
        }
    },
    "delivery": {
        "range": {
            "all_zipcodes": false,
            "has_max_range": false,
            "max_range": 12
        }
    },
    "currency": "EUR"
}
1.9.0 stable