Skip to main content
GET
/
service-points
/
{service_point_id}
Retrieve a service point
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/service-points/{service_point_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": {
    "id": 1000002,
    "name": "Stationsplein Parcel Locker",
    "carrier": {
      "code": "postnl",
      "name": "PostNL",
      "logo_url": "https://cdn.sendcloud.com/global-media/postnl/img/logo.svg",
      "icon_url": "https://cdn.sendcloud.com/global-media/postnl/img/icon.svg"
    },
    "carrier_service_point_id": "NL-00002",
    "carrier_shop_type": "pakketautomaat",
    "general_shop_type": "locker",
    "address": {
      "street": "Stationsplein",
      "house_number": "1",
      "postal_code": "5611 AC",
      "city": "Eindhoven",
      "country_code": "NL"
    },
    "position": {
      "latitude": 51.443218,
      "longitude": 5.4816
    },
    "contact": {
      "email": "",
      "phone": ""
    },
    "opening_times": {
      "monday": [
        {
          "start_time": "10:00",
          "end_time": "21:00"
        }
      ],
      "tuesday": [
        {
          "start_time": "10:00",
          "end_time": "21:00"
        }
      ],
      "wednesday": [
        {
          "start_time": "10:00",
          "end_time": "21:00"
        }
      ],
      "thursday": null,
      "friday": [
        {
          "start_time": "10:00",
          "end_time": "21:00"
        }
      ],
      "saturday": [
        {
          "start_time": "10:00",
          "end_time": "21:00"
        }
      ],
      "sunday": null
    },
    "is_open_tomorrow": false,
    "next_open_at": "2026-03-13T10:00:00+01:00",
    "is_expired": false
  }
}
Returns a single service point. This endpoint can be used to retrieve the latest available details for a specific service point after it has been selected or stored in a checkout or delivery flow. The returned service point may be expired. Check is_expired before using the result in your flow.

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Path Parameters

service_point_id
integer<int64>
required

Unique Sendcloud identifier of the service point.

Required range: x >= 1
Example:

1000001

Response

OK

data
Service Point ยท object
required

Information about a service point.