Documentation

Headless Checkout API - Backend Integration


Overview

Ingrid provides HTTP endpoints returning data in JSON format. We provide you with two environments:


Api Basics

Authorization

When you register with Ingrid you will receive an API token. This token must be send with every request in the Authorization HTTP header with the Bearer prefix followed by base64 encoded token. Each request to our server will look more or less like:

> GET /delivery/v1/sessions/VM2-c53fa647d1344c6ba49ebea6ac44f2db HTTP/2
> Host: api.ingrid.com
> Content-Type: application/json
> Accept: application/json
> Authorization: Bearer XXE5ODA0NTU0Y2JmNDRkYjhiYTdhM2NhX2EyZjFiNGE=

Observability

All Ingrid responses will containt a grpc-metadata-trace_id header. In case of any problems or question, providing this value to us will allow us to go back to you with more accurate feedback.

< HTTP/2 200
< content-type: application/json
< grpc-metadata-trace_id: 01JVRVS4Q5GFFZASB681S244ZF
<
{...}

Errors

In case of any errors, Ingrid will return a 4xx or 5xx HTTP status code. The response body will contain a JSON object with the following structure:

{
"code": 16,
"message": "unauthenticated"
}

For additional details about errors, please refer to the separate page: Errors.

Timeout


We recommend setting the timeout as follows:

Api Integration

High Level Overview

When a new user visits the e-commerce website, we initiate a new session by calling the CreateSession endpoint. This action provides a session name (name) and a list of available delivery options (deliveries[].delivery_categories[].delivery_options[]). The session name uniquely identifies the user within the system and is used with all subsequent endpoints.

As the user adds a product to the cart or inputs their address, we invoke the UpdateSession endpoint. This updates the session with the new product information and returns an updated list of available delivery options.

When the user completes the checkout process, it is necessary to call the CompleteSession endpoint and submit the selected delivery option ID from the user's journey. This action finalizes the checkout and provides a transport order ID (tos_id), which is useful for booking and tracking the order later.


Request:

curl https://api-stage.ingrid.com/delivery/v1/sessions \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64" \
-d '

{
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 1000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
'

Response:

{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "ACTIVE",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "1000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f1-7777-abd0-0dce2462bc71",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f1-70b4-906a-b4e351afc112",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-704c-9250-f78863ccb8d6",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7146-9954-cf8297633887",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-722b-8e67-d5265b1179aa",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7479-8892-f7e50f41dcc4",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-72e5-a560-07c87c14f1ef",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-71ce-a4c0-a17717674774",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-717c-8193-2e052c7da4e5",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7333-bc7d-3399064daccd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-730c-a03d-fd4121b2cd52",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-735f-af50-dac8f77f5284",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-724e-a044-bfd518b206fd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-74a6-9a0e-1d60c9db4187",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-71fd-bb76-efa842c397c8",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-73c2-bb38-b836ca9edd0d",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7272-9e35-4a50ec458774",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-738a-bdb7-ba428e0511e5",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7406-b971-60738c91819a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-72b0-aba9-53c1671be905",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-73dd-905f-1a1520fd92a9",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-743c-a99a-a5fb2dac668a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-752e-8c09-7c6aa3f79a55",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-74fe-a46b-4002d19fcba2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-7586-b991-e43cf77bfce5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-74d2-a39f-8a1fe36659fe",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-7559-ba73-8c3aa51f9751",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-75de-b386-1d840fcf22e8",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-75b3-8750-b5969c69e574",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-7602-8015-47fd1bbbd037",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f0-7ed7-b4e3-0668696009ee",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f21f-e7f0-7f25-b09c-1e0c885f6690",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f1-766b-afaa-f4d6d2b1ee82",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f21f-e7f1-7689-a7e1-a51a2965479e",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
]
}
],
"create_time": "2025-05-21T09:14:57.828233186Z",
"update_time": "2025-05-21T09:14:57.828233186Z"
}

Request:

curl https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6 \
-X PATCH \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64" \
-d '
{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 2000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
'

Response:

{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "ACTIVE",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "2000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-7aff-a6aa-972b631188a2",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7f2d-8bcf-0b3ac7267a63",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7ef8-93dc-fc23de1b369b",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7014-bf9e-032c79a475d4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7118-aed7-bc16ef0a9446",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7c8c-b18c-eaf32ec6d337",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-71e3-af75-7b4b05e1c486",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7083-9aa5-89c8993e867a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-704a-8444-0fbf83396919",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-724b-899a-dd5f5cbd3eaf",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7212-8887-bf7ddd13a689",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-727a-9d30-88b446c47946",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7149-be6d-cb6af91bd642",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7d1d-9741-413fbee6fc02",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-70ae-8471-55d6687d5ac1",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72cc-b8b6-699f4707fecb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7182-b5c6-3e977822f6d7",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72a4-89c3-aea025a965cd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7428-a4a0-e682ffb84dab",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-71b1-a716-280be80acfd4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72fa-8106-4ad60d90ab0e",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-76b5-ba19-513972088deb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7dda-9308-e98bbf6b5d9e",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d94-90eb-da437d0e9ad2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e34-b2fa-554b7424a5b6",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d61-bb63-653838fa4a22",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e0a-874b-5cfc1c6bb600",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e8e-be6f-8904667403a5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e5b-ab56-4fd71e3b2c8c",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7ec4-a728-8b7ed49da8b7",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f224-1036-7bf8-ad2b-aa584328c108",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-79e4-80ae-1987e06a2b20",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f224-1037-7a1b-9303-3b1d79aa6f9a",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
]
}
],
"create_time": "2025-05-21T09:14:59.497330Z",
"update_time": "2025-05-21T09:19:29.969186237Z"
}

Request:

curl https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6:complete \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64" \
-d '
{
"delivery_choices": [
{
"delivery_id": "1",
"option_id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"addon_ids": [
"19051ba0-682b-11ee-ae2a-9ee5ca455892"
]
}
]
}
'

Response:

{
"session": {
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "COMPLETED",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "2000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-7aff-a6aa-972b631188a2",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7f2d-8bcf-0b3ac7267a63",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7ef8-93dc-fc23de1b369b",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7014-bf9e-032c79a475d4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7118-aed7-bc16ef0a9446",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7c8c-b18c-eaf32ec6d337",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-71e3-af75-7b4b05e1c486",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7083-9aa5-89c8993e867a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-704a-8444-0fbf83396919",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-724b-899a-dd5f5cbd3eaf",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7212-8887-bf7ddd13a689",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-727a-9d30-88b446c47946",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7149-be6d-cb6af91bd642",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7d1d-9741-413fbee6fc02",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-70ae-8471-55d6687d5ac1",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72cc-b8b6-699f4707fecb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7182-b5c6-3e977822f6d7",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72a4-89c3-aea025a965cd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7428-a4a0-e682ffb84dab",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-71b1-a716-280be80acfd4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72fa-8106-4ad60d90ab0e",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-76b5-ba19-513972088deb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7dda-9308-e98bbf6b5d9e",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d94-90eb-da437d0e9ad2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e34-b2fa-554b7424a5b6",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d61-bb63-653838fa4a22",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e0a-874b-5cfc1c6bb600",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e8e-be6f-8904667403a5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e5b-ab56-4fd71e3b2c8c",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7ec4-a728-8b7ed49da8b7",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"chosen": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f224-1036-7bf8-ad2b-aa584328c108",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"chosen": true,
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"chosen": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-79e4-80ae-1987e06a2b20",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f224-1037-7a1b-9303-3b1d79aa6f9a",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
],
"tos_id": "01JVS2JGP3Y09H9GF75QBFCX5G"
}
],
"create_time": "2025-05-21T09:14:59.497330Z",
"update_time": "2025-05-21T09:25:12.515926764Z"
}
}

Request:

curl https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6 \
-X GET \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64"

Response:

{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "COMPLETED",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "2000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-7aff-a6aa-972b631188a2",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7f2d-8bcf-0b3ac7267a63",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7ef8-93dc-fc23de1b369b",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7014-bf9e-032c79a475d4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7118-aed7-bc16ef0a9446",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7c8c-b18c-eaf32ec6d337",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-71e3-af75-7b4b05e1c486",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7083-9aa5-89c8993e867a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-704a-8444-0fbf83396919",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-724b-899a-dd5f5cbd3eaf",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7212-8887-bf7ddd13a689",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-727a-9d30-88b446c47946",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7149-be6d-cb6af91bd642",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7d1d-9741-413fbee6fc02",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-70ae-8471-55d6687d5ac1",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72cc-b8b6-699f4707fecb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7182-b5c6-3e977822f6d7",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72a4-89c3-aea025a965cd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7428-a4a0-e682ffb84dab",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-71b1-a716-280be80acfd4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72fa-8106-4ad60d90ab0e",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-76b5-ba19-513972088deb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7dda-9308-e98bbf6b5d9e",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d94-90eb-da437d0e9ad2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e34-b2fa-554b7424a5b6",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d61-bb63-653838fa4a22",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e0a-874b-5cfc1c6bb600",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e8e-be6f-8904667403a5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e5b-ab56-4fd71e3b2c8c",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7ec4-a728-8b7ed49da8b7",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"chosen": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f224-1036-7bf8-ad2b-aa584328c108",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"chosen": true,
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"chosen": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-79e4-80ae-1987e06a2b20",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f224-1037-7a1b-9303-3b1d79aa6f9a",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
],
"tos_id": "01JVS2JGP3Y09H9GF75QBFCX5G"
}
],
"create_time": "2025-05-21T09:14:59.497330Z",
"update_time": "2025-05-21T09:25:12.567899Z"
}
POST https://api-stage.ingrid.com/delivery/v1/sessions
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

{
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 1000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
PATCH https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 2000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
POST https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6:complete
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

{
"delivery_choices": [
{
"delivery_id": "1",
"option_id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"addon_ids": [
"19051ba0-682b-11ee-ae2a-9ee5ca455892"
]
}
]
}
GET https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

Create Session

A session can be initiated whenever it's necessary to determine delivery options for a user on an e-commerce website.

Typically, a new session is started in the following instances (pick one):


curl https://api-stage.ingrid.com/delivery/v1/sessions \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64" \
-d '

{
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 1000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
'

POST https://api-stage.ingrid.com/delivery/v1/sessions
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

{
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 1000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "ACTIVE",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "1000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f1-7777-abd0-0dce2462bc71",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f1-70b4-906a-b4e351afc112",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-704c-9250-f78863ccb8d6",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7146-9954-cf8297633887",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-722b-8e67-d5265b1179aa",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7479-8892-f7e50f41dcc4",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-72e5-a560-07c87c14f1ef",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-71ce-a4c0-a17717674774",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-717c-8193-2e052c7da4e5",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7333-bc7d-3399064daccd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-730c-a03d-fd4121b2cd52",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-735f-af50-dac8f77f5284",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-724e-a044-bfd518b206fd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-74a6-9a0e-1d60c9db4187",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-71fd-bb76-efa842c397c8",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-73c2-bb38-b836ca9edd0d",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7272-9e35-4a50ec458774",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-738a-bdb7-ba428e0511e5",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-7406-b971-60738c91819a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-72b0-aba9-53c1671be905",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-73dd-905f-1a1520fd92a9",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-743c-a99a-a5fb2dac668a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f21f-e7f1-752e-8c09-7c6aa3f79a55",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-74fe-a46b-4002d19fcba2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-7586-b991-e43cf77bfce5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-74d2-a39f-8a1fe36659fe",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-7559-ba73-8c3aa51f9751",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-75de-b386-1d840fcf22e8",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-75b3-8750-b5969c69e574",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f21f-e7f1-7602-8015-47fd1bbbd037",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f0-7ed7-b4e3-0668696009ee",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f21f-e7f0-7f25-b09c-1e0c885f6690",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f21f-e7f1-766b-afaa-f4d6d2b1ee82",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f21f-e7f1-7689-a7e1-a51a2965479e",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
]
}
],
"create_time": "2025-05-21T09:14:57.828233186Z",
"update_time": "2025-05-21T09:14:57.828233186Z"
}

Update Session

An update session is employed to modify the existing session with new cart items or a user's address, which may influence delivery options.

Examples of user actions that prompt an update session include:


curl https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6 \
-X PATCH \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64" \
-d '
{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 2000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
'

PATCH https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": 2000,
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"attributes": [],
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": 1000
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": 1000
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32.187Z",
"latest_time": "2025-05-22T08:29:32.187Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"region_code": "",
"postal_code": "50-130",
"address_lines": [
""
],
"city": ""
}
}
}
]
}
{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "ACTIVE",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "2000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-7aff-a6aa-972b631188a2",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7f2d-8bcf-0b3ac7267a63",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7ef8-93dc-fc23de1b369b",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7014-bf9e-032c79a475d4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7118-aed7-bc16ef0a9446",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7c8c-b18c-eaf32ec6d337",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-71e3-af75-7b4b05e1c486",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7083-9aa5-89c8993e867a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-704a-8444-0fbf83396919",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-724b-899a-dd5f5cbd3eaf",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7212-8887-bf7ddd13a689",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-727a-9d30-88b446c47946",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7149-be6d-cb6af91bd642",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7d1d-9741-413fbee6fc02",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-70ae-8471-55d6687d5ac1",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72cc-b8b6-699f4707fecb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7182-b5c6-3e977822f6d7",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72a4-89c3-aea025a965cd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7428-a4a0-e682ffb84dab",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-71b1-a716-280be80acfd4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72fa-8106-4ad60d90ab0e",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-76b5-ba19-513972088deb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7dda-9308-e98bbf6b5d9e",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d94-90eb-da437d0e9ad2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e34-b2fa-554b7424a5b6",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d61-bb63-653838fa4a22",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e0a-874b-5cfc1c6bb600",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e8e-be6f-8904667403a5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e5b-ab56-4fd71e3b2c8c",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7ec4-a728-8b7ed49da8b7",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f224-1036-7bf8-ad2b-aa584328c108",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-79e4-80ae-1987e06a2b20",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f224-1037-7a1b-9303-3b1d79aa6f9a",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
]
}
],
"create_time": "2025-05-21T09:14:59.497330Z",
"update_time": "2025-05-21T09:19:29.969186237Z"
}

Complete Session

A complete session is utilized to finalize the checkout process once the user has placed an order or completed payment. It is necessary to provide the user's selected delivery option ID along with any applicable add-on IDs, if supported. A key aspect of the complete session is that it generates a transport order in Ingrid, which is subsequently used for booking and tracking purposes. The order IDs are returned in the response under the tos_id field, with one ID provided for each delivery.

curl https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6:complete \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64" \
-d '
{
"delivery_choices": [
{
"delivery_id": "1",
"option_id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"addon_ids": [
"19051ba0-682b-11ee-ae2a-9ee5ca455892"
]
}
]
}
'

POST https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6:complete
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json

{
"delivery_choices": [
{
"delivery_id": "1",
"option_id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"addon_ids": [
"19051ba0-682b-11ee-ae2a-9ee5ca455892"
]
}
]
}
{
"session": {
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "COMPLETED",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "2000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-7aff-a6aa-972b631188a2",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7f2d-8bcf-0b3ac7267a63",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7ef8-93dc-fc23de1b369b",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7014-bf9e-032c79a475d4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7118-aed7-bc16ef0a9446",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7c8c-b18c-eaf32ec6d337",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-71e3-af75-7b4b05e1c486",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7083-9aa5-89c8993e867a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-704a-8444-0fbf83396919",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-724b-899a-dd5f5cbd3eaf",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7212-8887-bf7ddd13a689",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-727a-9d30-88b446c47946",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7149-be6d-cb6af91bd642",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7d1d-9741-413fbee6fc02",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-70ae-8471-55d6687d5ac1",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72cc-b8b6-699f4707fecb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7182-b5c6-3e977822f6d7",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72a4-89c3-aea025a965cd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7428-a4a0-e682ffb84dab",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-71b1-a716-280be80acfd4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72fa-8106-4ad60d90ab0e",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-76b5-ba19-513972088deb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7dda-9308-e98bbf6b5d9e",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d94-90eb-da437d0e9ad2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e34-b2fa-554b7424a5b6",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d61-bb63-653838fa4a22",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e0a-874b-5cfc1c6bb600",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e8e-be6f-8904667403a5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e5b-ab56-4fd71e3b2c8c",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7ec4-a728-8b7ed49da8b7",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"chosen": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f224-1036-7bf8-ad2b-aa584328c108",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"chosen": true,
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"chosen": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-79e4-80ae-1987e06a2b20",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f224-1037-7a1b-9303-3b1d79aa6f9a",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
],
"tos_id": "01JVS2JGP3Y09H9GF75QBFCX5G"
}
],
"create_time": "2025-05-21T09:14:59.497330Z",
"update_time": "2025-05-21T09:25:12.515926764Z"
}
}

Get Session

A get session is used to retrieve session data and delivery options based on a specific session name. This can be accessed at any point during the session's lifetime.

curl https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6 \
-X GET \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRIVATE_KEY_BASE64"
GET https://api-stage.ingrid.com/delivery/v1/sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6
Authorization: Bearer $PRIVATE_KEY_BASE64
Content-Type: application/json
{
"name": "sessions/VM2-c0e4a79fbcc74a6ea7354cb9d6868ef6",
"state": "COMPLETED",
"purchase": {
"country_code": "PL",
"currency_code": "PLN",
"total_value": "2000",
"locales": [
"en-US"
]
},
"deliveries": [
{
"id": "1",
"line_items": [
{
"sku": "sku1",
"title": "Keyboard",
"quantity": 1,
"price": "1000"
},
{
"sku": "sku2",
"title": "Mouse",
"quantity": 1,
"price": "1000"
}
],
"fulfillments": [
{
"readiness": {
"earliest_time": "2025-05-22T08:29:32Z",
"latest_time": "2025-05-22T08:29:32Z"
}
}
],
"recipient_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-130",
"address_lines": [
""
],
"coordinates": {
"lat": 51.11149,
"lng": 17.028453
}
}
},
"delivery_categories": [
{
"id": "home-delivery-1384f5e83e3b4143a1c2475214a1de2c",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-7aff-a6aa-972b631188a2",
"carrier": {
"name": "InPost",
"product_name": "Kurier",
"product_id": "inpost-d2d",
"external_id": "asdf"
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"warehouse": {
"id": "swe-62aac37054cb4b60862e7aebc33b38ab",
"address": {
"country_code": "SE",
"postal_code": "111 34",
"city": "Stockholm",
"address_lines": [
""
]
}
}
},
{
"id": "pickup-bc63c26bfdd4480d815a9d4c6f221094",
"delivery_type": "PICKUP",
"display_name": "Pickup Lockers",
"sort_order": 1,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7f2d-8bcf-0b3ac7267a63",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 2
},
"pickup_location": {
"id": "PL-4513121",
"external_id": "PL-4513121",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-128",
"city": "Wrocław",
"address_lines": [
"Św. Mikołaja 16"
],
"coordinates": {
"lat": 51.111725,
"lng": 17.027769
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "58",
"minutes": "1"
},
"driving": {
"meters": "414",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7ef8-93dc-fc23de1b369b",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 1
},
"pickup_location": {
"id": "PL-4505757",
"external_id": "PL-4505757",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 61"
],
"coordinates": {
"lat": 51.110136,
"lng": 17.027862
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "156",
"minutes": "1"
},
"driving": {
"meters": "156",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7014-bf9e-032c79a475d4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 3
},
"pickup_location": {
"id": "PL-4509363",
"external_id": "PL-4509363",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-109",
"city": "Wrocław",
"address_lines": [
"Kiełbaśnicza 27"
],
"coordinates": {
"lat": 51.110926,
"lng": 17.029461
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "126",
"minutes": "1"
},
"driving": {
"meters": "825",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7118-aed7-bc16ef0a9446",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 7
},
"pickup_location": {
"id": "PL-4507473",
"external_id": "PL-4507473",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-114",
"city": "Wrocław",
"address_lines": [
"Odrzańska 2"
],
"coordinates": {
"lat": 51.111588,
"lng": 17.031287
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "230",
"minutes": "2"
},
"driving": {
"meters": "374",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7c8c-b18c-eaf32ec6d337",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 1,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO261",
"external_id": "POP-WRO261",
"location_type": "LOCKER",
"title": "BONITO",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 2"
],
"coordinates": {
"lat": 51.11004,
"lng": 17.02863
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
""
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "209",
"minutes": "2"
},
"driving": {
"meters": "714",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-71e3-af75-7b4b05e1c486",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 11
},
"pickup_location": {
"id": "PL-4506141",
"external_id": "PL-4506141",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-111",
"city": "Wrocław",
"address_lines": [
"Malarska 25"
],
"coordinates": {
"lat": 51.112328,
"lng": 17.03123
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "290",
"minutes": "3"
},
"driving": {
"meters": "314",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7083-9aa5-89c8993e867a",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 5
},
"pickup_location": {
"id": "PL-4510201",
"external_id": "PL-4510201",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-106",
"city": "Wrocław",
"address_lines": [
"Rynek 8"
],
"coordinates": {
"lat": 51.110068,
"lng": 17.030283
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "288",
"minutes": "3"
},
"driving": {
"meters": "742",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-704a-8444-0fbf83396919",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 4
},
"pickup_location": {
"id": "PL-4506879",
"external_id": "PL-4506879",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 9"
],
"coordinates": {
"lat": 51.110064,
"lng": 17.026142
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "317",
"minutes": "3"
},
"driving": {
"meters": "883",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-724b-899a-dd5f5cbd3eaf",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 13
},
"pickup_location": {
"id": "PL-4517787",
"external_id": "PL-4517787",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-101",
"city": "Wrocław",
"address_lines": [
"Rynek Ratusz 16"
],
"coordinates": {
"lat": 51.110419,
"lng": 17.032419
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "320",
"minutes": "3"
},
"driving": {
"meters": "1641",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7212-8887-bf7ddd13a689",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 12
},
"pickup_location": {
"id": "PL-4513110",
"external_id": "PL-4513110",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 19"
],
"coordinates": {
"lat": 51.112763,
"lng": 17.025071
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "380",
"minutes": "4"
},
"driving": {
"meters": "794",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-727a-9d30-88b446c47946",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 14
},
"pickup_location": {
"id": "PL-4507316",
"external_id": "PL-4507316",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-043",
"city": "Wrocław",
"address_lines": [
"Jana Pawła Ii 8"
],
"coordinates": {
"lat": 51.111404,
"lng": 17.023351
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "382",
"minutes": "4"
},
"driving": {
"meters": "647",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7149-be6d-cb6af91bd642",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 8
},
"pickup_location": {
"id": "PL-4507529",
"external_id": "PL-4507529",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-063",
"city": "Wrocław",
"address_lines": [
"Ofiar Oświęcimskich 2"
],
"coordinates": {
"lat": 51.108842,
"lng": 17.030017
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "420",
"minutes": "5"
},
"driving": {
"meters": "551",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7d1d-9741-413fbee6fc02",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 2,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO02H",
"external_id": "WRO02H",
"location_type": "LOCKER",
"title": "lokal wejscie od ulicy Wszystkich Świetych",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-136",
"city": "Wrocław",
"address_lines": [
"Wszystkich Świętych 13"
],
"coordinates": {
"lat": 51.11204,
"lng": 17.0242
}
}
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "693",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1037-70ae-8471-55d6687d5ac1",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 6
},
"pickup_location": {
"id": "PL-4521240",
"external_id": "PL-4521240",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-077",
"city": "Wrocław",
"address_lines": [
"Kazimierza Wielkiego 25"
],
"coordinates": {
"lat": 51.108657,
"lng": 17.026967
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "728",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72cc-b8b6-699f4707fecb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 16
},
"pickup_location": {
"id": "PL-4505800",
"external_id": "PL-4505800",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 65"
],
"coordinates": {
"lat": 51.110948,
"lng": 17.033525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "426",
"minutes": "5"
},
"driving": {
"meters": "920",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7182-b5c6-3e977822f6d7",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 9
},
"pickup_location": {
"id": "PL-4505687",
"external_id": "PL-4505687",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-079",
"city": "Wrocław",
"address_lines": [
"Ruska 41"
],
"coordinates": {
"lat": 51.110789,
"lng": 17.023956
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "430",
"minutes": "5"
},
"driving": {
"meters": "1149",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72a4-89c3-aea025a965cd",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 15
},
"pickup_location": {
"id": "PL-4504040",
"external_id": "PL-4504040",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-073",
"city": "Wrocław",
"address_lines": [
"Św. Antoniego 35"
],
"coordinates": {
"lat": 51.10971,
"lng": 17.023422
}
}
},
"operational_hours": {
"monday": [
"06:00-22:00"
],
"tuesday": [
"06:00-22:00"
],
"wednesday": [
"06:00-22:00"
],
"thursday": [
"06:00-22:00"
],
"friday": [
"06:00-22:00"
],
"saturday": [
"06:00-22:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "555",
"minutes": "6"
},
"driving": {
"meters": "935",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-7428-a4a0-e682ffb84dab",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 18
},
"pickup_location": {
"id": "PL-4525432",
"external_id": "PL-4525432",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-138",
"city": "Wrocław",
"address_lines": [
"Kuźnicza 17"
],
"coordinates": {
"lat": 51.11182,
"lng": 17.034212
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "541",
"minutes": "6"
},
"driving": {
"meters": "926",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-71b1-a716-280be80acfd4",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 10
},
"pickup_location": {
"id": "PL-4505614",
"external_id": "PL-4505614",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-075",
"city": "Wrocław",
"address_lines": [
"Krupnicza 3"
],
"coordinates": {
"lat": 51.108425,
"lng": 17.026562
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "640",
"minutes": "7"
},
"driving": {
"meters": "798",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-72fa-8106-4ad60d90ab0e",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 17
},
"pickup_location": {
"id": "PL-4505803",
"external_id": "PL-4505803",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-064",
"city": "Wrocław",
"address_lines": [
"Świdnicka 5"
],
"coordinates": {
"lat": 51.108298,
"lng": 17.032525
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "606",
"minutes": "7"
},
"driving": {
"meters": "732",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1037-76b5-ba19-513972088deb",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Service Point",
"product_id": "dhl-svp",
"sort_order": 19
},
"pickup_location": {
"id": "PL-4505661",
"external_id": "PL-4505661",
"location_type": "STORE",
"title": "Żabka",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-123",
"city": "Wrocław",
"address_lines": [
"Oławska 3"
],
"coordinates": {
"lat": 51.108626,
"lng": 17.033716
}
}
},
"operational_hours": {
"monday": [
"06:00-23:00"
],
"tuesday": [
"06:00-23:00"
],
"wednesday": [
"06:00-23:00"
],
"thursday": [
"06:00-23:00"
],
"friday": [
"06:00-23:00"
],
"saturday": [
"06:00-23:00"
],
"sunday": [
"11:00-18:00"
]
},
"distances": {
"walking": {
"meters": "618",
"minutes": "7"
},
"driving": {
"meters": "1486",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 6,
"latest": 8
}
},
"expire_time": "2025-05-25T22:00:00Z"
},
{
"id": "0196f224-1036-7dda-9308-e98bbf6b5d9e",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 5,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO130M",
"external_id": "WRO130M",
"location_type": "LOCKER",
"title": "Przy Żabce w Bramie",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-216",
"city": "Wrocław",
"address_lines": [
"Pomorska 9"
],
"coordinates": {
"lat": 51.11684,
"lng": 17.03207
}
}
},
"distances": {
"walking": {
"meters": "757",
"minutes": "9"
},
"driving": {
"meters": "816",
"minutes": "1"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d94-90eb-da437d0e9ad2",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 4,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO123M",
"external_id": "WRO123M",
"location_type": "LOCKER",
"title": "Przy wjeździe na podwórze",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-206",
"city": "Wrocław",
"address_lines": [
"Cybulskiego 7"
],
"coordinates": {
"lat": 51.1166,
"lng": 17.03233
}
}
},
"distances": {
"walking": {
"meters": "773",
"minutes": "9"
},
"driving": {
"meters": "857",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e34-b2fa-554b7424a5b6",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 7,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO207",
"external_id": "POP-WRO207",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-208",
"city": "Wrocław ",
"address_lines": [
"Dubois 4"
],
"coordinates": {
"lat": 51.11691,
"lng": 17.03292
}
}
},
"operational_hours": {
"monday": [
"8-23"
],
"tuesday": [
"8-23"
],
"wednesday": [
"8-23"
],
"thursday": [
"8-23"
],
"friday": [
"8-23"
],
"saturday": [
"8-23"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "862",
"minutes": "10"
},
"driving": {
"meters": "934",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7d61-bb63-653838fa4a22",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 3,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO32HP",
"external_id": "WRO32HP",
"location_type": "LOCKER",
"title": "w sklepie Duży Ben",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11655,
"lng": 17.02516
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e0a-874b-5cfc1c6bb600",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 6,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO262",
"external_id": "POP-WRO262",
"location_type": "LOCKER",
"title": "DUŻY BEN",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-201",
"city": "Wrocław",
"address_lines": [
"Jagiełły 5A/U1"
],
"coordinates": {
"lat": 51.11667,
"lng": 17.02423
}
}
},
"operational_hours": {
"monday": [
"9-22"
],
"tuesday": [
"9-22"
],
"wednesday": [
"9-22"
],
"thursday": [
"9-22"
],
"friday": [
"9-22"
],
"saturday": [
"9-22"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "868",
"minutes": "10"
},
"driving": {
"meters": "1600",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e8e-be6f-8904667403a5",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 9,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO05H",
"external_id": "WRO05H",
"location_type": "LOCKER",
"title": "W lokalu",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-257",
"city": "Wrocław",
"address_lines": [
"Śrutowa 6"
],
"coordinates": {
"lat": 51.11763,
"lng": 17.03405
}
}
},
"distances": {
"walking": {
"meters": "957",
"minutes": "11"
},
"driving": {
"meters": "1194",
"minutes": "2"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7e5b-ab56-4fd71e3b2c8c",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 8,
"external_id": "inpost1"
},
"pickup_location": {
"id": "WRO88M",
"external_id": "WRO88M",
"location_type": "LOCKER",
"title": "W uliczce pomiędzy kamienicami",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-051",
"city": "Wrocław",
"address_lines": [
"Plac Teatralny 3"
],
"coordinates": {
"lat": 51.10534,
"lng": 17.0324
}
}
},
"distances": {
"walking": {
"meters": "999",
"minutes": "11"
},
"driving": {
"meters": "2016",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
},
{
"id": "0196f224-1036-7ec4-a728-8b7ed49da8b7",
"carrier": {
"name": "InPost",
"product_name": "Paczkomaty",
"product_id": "inpost-std",
"sort_order": 10,
"external_id": "inpost1"
},
"pickup_location": {
"id": "POP-WRO162",
"external_id": "POP-WRO162",
"location_type": "LOCKER",
"title": "STACJA CIRCLE K",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-203",
"city": "Wrocław",
"address_lines": [
"Dmowskiego 5"
],
"coordinates": {
"lat": 51.11715,
"lng": 17.02137
}
}
},
"operational_hours": {
"monday": [
"8-20"
],
"tuesday": [
"8-20"
],
"wednesday": [
"8-20"
],
"thursday": [
"8-20"
],
"friday": [
"8-20"
],
"saturday": [
"10-14"
],
"sunday": [
""
]
},
"distances": {
"walking": {
"meters": "1050",
"minutes": "12"
},
"driving": {
"meters": "1660",
"minutes": "3"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_BUSINESS_DAY",
"earliest": 4,
"latest": 5
}
},
"expire_time": "2025-05-25T22:00:00Z",
"price": "1200"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "delivery-a20772d216ff43aa9b45182e6fcfbdc1",
"delivery_type": "DELIVERY",
"display_name": "Home Delivery",
"sort_order": 2,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1036-7bb7-80cb-15ef442919e9",
"carrier": {
"name": "DPD Germany",
"product_name": "DPD Classic",
"product_id": "dpd-classic"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"preselected": true,
"chosen": true,
"expire_time": "2025-05-25T22:00:00Z",
"price": "1000"
},
{
"id": "0196f224-1036-7bf8-ad2b-aa584328c108",
"carrier": {
"name": "DHL eCommerce Netherlands",
"product_name": "DHL Parcel Poland",
"product_id": "dhl-par",
"external_id": "dhlparcel"
},
"etd": {
"custom": {
"text": "Home delivery in 3-5 business days with DPD"
}
},
"expire_time": "2025-05-25T22:00:00Z"
}
],
"addons": [
{
"display_name": "Express delivery",
"price": "500",
"addon_type": "CUSTOM",
"chosen": true,
"id": "19051ba0-682b-11ee-ae2a-9ee5ca455892"
}
],
"preselected": true,
"chosen": true,
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
},
{
"id": "instore-pickup-faa76a1f72f141d0af3dcaebdfaef752",
"delivery_type": "INSTORE",
"display_name": "Pick in Store",
"sort_order": 3,
"options_source": "CARRIER",
"delivery_options": [
{
"id": "0196f224-1037-79e4-80ae-1987e06a2b20",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 1,
"external_id": "instore"
},
"pickup_location": {
"id": "1",
"external_id": "1",
"title": "Galeria Dominikańska, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-159",
"city": "Wrocław",
"address_lines": [
"plac Dominikański 3"
],
"coordinates": {
"lat": 51.1078551,
"lng": 17.0379924
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "1036",
"minutes": "12"
},
"driving": {
"meters": "2479",
"minutes": "4"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
},
{
"id": "0196f224-1037-7a1b-9303-3b1d79aa6f9a",
"carrier": {
"name": "InStore",
"product_name": "In Store Pickup",
"product_id": "ics-pln",
"sort_order": 2,
"external_id": "instore"
},
"pickup_location": {
"id": "2",
"external_id": "2",
"title": "Wroclavia, Wrocław",
"visiting_contact": {
"address": {
"country_code": "PL",
"postal_code": "50-086",
"city": "Wrocław",
"address_lines": [
"Sucha 1"
],
"coordinates": {
"lat": 51.0964344,
"lng": 17.0299708
}
}
},
"operational_hours": {
"monday": [
"09:00-21:30"
],
"tuesday": [
"09:00-21:30"
],
"wednesday": [
"09:00-21:30"
],
"thursday": [
"09:00-21:30"
],
"friday": [
"09:00-21:30"
],
"saturday": [
"09:00-21:30"
],
"sunday": [
"12:00-16:00"
]
},
"distances": {
"walking": {
"meters": "2176",
"minutes": "26"
},
"driving": {
"meters": "3168",
"minutes": "6"
}
}
},
"etd": {
"relative": {
"unit": "TIME_UNIT_DAY",
"earliest": 3,
"latest": 8
}
},
"expire_time": "2025-05-23T21:00:00Z"
}
],
"warehouse": {
"id": "wro-fdbca654afc8477b8695a3d07efcdf65",
"address": {
"country_code": "PL",
"postal_code": "55-040",
"city": "Wrocław",
"address_lines": [
""
]
}
}
}
],
"tos_id": "01JVS2JGP3Y09H9GF75QBFCX5G"
}
],
"create_time": "2025-05-21T09:14:59.497330Z",
"update_time": "2025-05-21T09:25:12.567899Z"
}

Frontend

We recommend forwarding all responses from the create, update, get, and complete endpoints to the frontend. This approach facilitates seamless integration and allows for effortless adaptation to future API extensions.

Last updated: Thu, May 29, 06:39 AM