Skip to content

Shippings (GET)#

Shipping costs are country-specific. This means that each country will have its own unique shipping- & handling-costs.

  • GET api/shippings

Note

Please note that this endpoint is just a "convenience endpoint" that allows you to have a look at the shipping- and handling-costs.

We will never "silently" change delivery-costs! If we have to increase costs, we will inform you months in advance.

Response#

{
    "@context": "/v2/api/contexts/Shipping",
    "@id": "/v2/api/shippings",
    "@type": "hydra:Collection",
    "hydra:member": [
        {
            "@id": "/v2/api/shippings/6419",
            "@type": "Shipping",
            "id": 6419,
            "country": "Andorra",
            "shippingCost": 11.7,
            "handling": 2.6
        },
        {
            "@id": "/v2/api/shippings/6418",
            "@type": "Shipping",
            "id": 6418,
            "country": "Austria",
            "shippingCost": 11.6,
            "handling": 2.6
        },
        {
            "@id": "/v2/api/shippings/6420",
            "@type": "Shipping",
            "id": 6420,
            "country": "Belgium",
            "shippingCost": 8.4,
            "handling": 2.6
        }
    ],
    "hydra:totalItems": 31
}