Get shop photos

GET /shops/@id/photos

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/photos HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.9.0
Accept-Language: en-US,en;q=0.5

Response

Array of ShopPhoto: [ShopPhoto]

ShopPhoto

Field Type Description
url URL An URL field starting with http:// or https://
thumbnail_url URL? Nullable. An URL field starting with http:// or https://

Example response 1

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

[
    {
        "url": "https://example.com",
        "thumbnail_url": "https://example.com"
    },
    {
        "url": "https://example.com",
        "thumbnail_url": "https://example.com"
    },
    {
        "url": "https://example.com",
        "thumbnail_url": "https://example.com"
    }
]
1.9.0 stable