---
title: "Get service points based on product."
method: GET
path: "/service_point/service_points"
tags: ["Service points by product", "Delivery checkout"]
---

# Get service points based on product.

`GET /service_point/service_points`

The endpoint will return an array of the closest service points available to the destination, according to the parameters. The list will be sorted by distance when possible.

## Query parameters

- `product_code` string, required
- `country_code` string, required
- `zipcode` string, required
- `city` string
- `address` string
- `quantity` integer
- `service_point_types` string[] — A specific service point type

## Response `200`

Successful.

- ServicePointV2[]
  - `id` string — ID of the service point.
  - `name` string — Name of the location of the service point.
  - `address` string — Address line 1 of the service point.
  - `address2` string — Second address line. Can be used for floor/room number, building name etc.
  - `zipcode` string — Zip code of the pickup point.
  - `city` string — City of the pickup point.
  - `country` string — Country code of the pickup point.
  - `distance` integer — Distance in meters between the pickup point and the requested location.
  - `longitude` number — Longitude of the pickup point. Together with latitude it defines the coordinates of the pickup point.
  - `latitude` number — Latitude of the pickup point. Together with longitude it defines the coordinates of the pickup point.
  - `carrier_code` string — Carrier code of the pickup point. Defines which carrier the pickup point belongs to.
  - `type` string, nullable — The type of the service point. Types may vary from carrier to carrier.
  - `opening_hours` string[] — Opening hours in which parcels can be picked up at the location.
  - `drop_off_allowed` boolean — Whether or not the pickup point supports drop off of parcels.
  - `pickup_allowed` boolean — Whether or not the pickup point supports pickup of parcels.

## Other responses

- `401` — Unauthorized.
- `404` — Resource not found.

---

[API](https://skmtc.net/shipmondo/apis/shipmondo-api.md) · [All operations](https://skmtc.net/shipmondo/apis/shipmondo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/shipmondo/shipmondo-api/revisions/3b9f91693dec/schema)
