## Section on demand
Some endpoints return the data sections as optional, on demand. The request
is done by giving the section name in the
`include` parameter. Part of the data is returned each time, the other
section only on demand. This makes the responses smaller for those, who do
not need the data
, thus saving the volume of data transmitted and shortening the time to
process the request.
For example, for "Eshop Info" endpoint, you will gain basic info when simply
calling `[GET] /api/eshop`, but payment
methods and transport options only when using `[GET] /api/eshop?include=paymentMethods,shippingMethods`.
More values are separated by a comma, no sequencing, no upper/lower case
differentiation. Other blocks are available on demand
and each endpoint informs you which identifier to request.
