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/17 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.5.1
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
offers [Offer.simple] Array of Offer.simple
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
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
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: 9781

{
    "id": 18,
    "name": "Muriel Grady",
    "address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE",
        "position": {
            "latitude": 1.54361,
            "longitude": 0.45645
        }
    },
    "allow_comments": false,
    "offers": [
        {
            "id": 14,
            "name": "Black Friday"
        },
        {
            "id": 17,
            "name": "Black Friday"
        },
        {
            "id": 17,
            "name": "Black Friday"
        }
    ],
    "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
                }
            ],
            "white_background": true
        }
    },
    "allow_orders": true,
    "delivery_use_intervals": true,
    "categories": [
        {
            "id": 16,
            "name": "Juston Predovic IV",
            "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
                    }
                ],
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Quia delectus corporis officiis itaque dolores harum at quam optio eveniet."
                },
                "description": {
                    "en": "Sed voluptatem voluptatem non ipsa. Modi sunt eligendi placeat magni. Vel accusantium est eligendi ut. Sit quo odit doloribus et quibusdam sunt deleniti."
                },
                "url": {
                    "en": "http://www.conroy.biz/enim-fugiat-culpa-atque-nulla"
                }
            }
        },
        {
            "id": 17,
            "name": "Cornell Wuckert",
            "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
                    }
                ],
                "white_background": false
            },
            "seo": {
                "title": {
                    "en": "Laborum reprehenderit voluptas perspiciatis fugiat cum similique ut reprehenderit et."
                },
                "description": {
                    "en": "Pariatur nulla provident magnam aliquam qui voluptatem quaerat. Totam dolore dignissimos amet enim officiis ut. Non non ducimus aliquid. Sapiente maxime quo enim ipsam et."
                },
                "url": {
                    "en": "http://cole.com/cumque-omnis-repellat-quam-totam-ut"
                }
            }
        },
        {
            "id": 15,
            "name": "Mr. Leonel Schultz DVM",
            "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
                    }
                ],
                "white_background": true
            },
            "seo": {
                "title": {
                    "en": "Vitae dolores labore et quo et placeat sint consequatur."
                },
                "description": {
                    "en": "Aliquam saepe sapiente non quasi. Voluptates ut ea fugiat quia. Iure mollitia quia totam iusto quibusdam. Dolores at quibusdam consectetur."
                },
                "url": {
                    "en": "http://bogan.info/"
                }
            }
        }
    ],
    "category_groups": [
        {
            "name": "...",
            "category_ids": [
                16,
                13,
                13
            ]
        },
        {
            "name": "...",
            "category_ids": [
                10,
                18,
                17
            ]
        },
        {
            "name": "...",
            "category_ids": [
                15,
                18,
                16
            ]
        }
    ],
    "allow_invoices": true,
    "hours": [
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "08:42 - 18:16",
                        "08:42 - 18:16",
                        "08:42 - 18:16"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "09:25 - 15:55",
                        "09:25 - 15:55",
                        "09:25 - 15:55"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "09:29 - 21:45",
                        "09:29 - 21:45",
                        "09:29 - 21:45"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "08:30 - 11:21",
                        "08:30 - 11:21",
                        "08:30 - 11:21"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "08:45 - 16:24",
                        "08:45 - 16:24",
                        "08:45 - 16:24"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "08:18 - 17:41",
                        "08:18 - 17:41",
                        "08:18 - 17:41"
                    ]
                }
            ]
        },
        {
            "name": "...",
            "description": "...",
            "type": "open",
            "hours": [
                {
                    "days": "5",
                    "times": [
                        "09:57 - 19:44",
                        "09:57 - 19:44",
                        "09:57 - 19:44"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "06:16 - 16:24",
                        "06:16 - 16:24",
                        "06:16 - 16:24"
                    ]
                },
                {
                    "days": "5",
                    "times": [
                        "09:56 - 20:42",
                        "09:56 - 20:42",
                        "09:56 - 20:42"
                    ]
                }
            ]
        }
    ],
    "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"
        }
    ],
    "currency": "EUR"
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.5.1 stable