---
title: "List pickup points"
method: GET
path: "/pickup_points"
tags: ["Service points"]
---

# List pickup points

`GET /pickup_points`

Returns a list of the available and nearest pickup points based on input.


Usually the address information given should be the receivers address to find pickup points nearest their location.


The identification of the pickup points can be used/required when creating a shipment.

## Query parameters

- `carrier_code` 'bpost' | 'bring' | 'budbee' | 'bws' | 'city_mail' | 'dao' | 'db_schenker' | 'dfm' | 'dhl_freight_se' | 'dhl_parcel' | 'dsv_xpress' | 'gls' | 'gls_de' | 'helthjem' | 'link_logistics' | 'packeta' | 'pdk' | 'post_nl' | 'post_nord' | 'posti' | 'ub_db_schenker_se' | 'ups', required
- `country_code` string, required
- `zipcode` string, required
- `city` string
- `address` string
- `id` string
- `quantity` integer
- `collect_points` boolean
- `product_code` string
- `in_delivery` boolean
- `out_delivery` boolean

## Response `200`

Successful.

- ServicePoint[]
  - `number` string — ID of the pickup point. Used when request a shipment to the specific pickup point.
  - `id` string — ID of the pickup point. Used when request a shipment to the specific pickup point.
  - `company_name` string — Name of the location of the pickup point.
  - `name` string — Name of the location of the pickup point.
  - `address` string — Address line 1 of the pickup 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.
  - `agent` string — Carrier code of the pickup point. Defines which carrier the pickup point belongs to.
  - `carrier_code` string — Carrier code of the pickup point. Defines which carrier the pickup point belongs to.
  - `opening_hours` string[] — Opening hours in which parcels can be picked up at the location.
  - `in_delivery` boolean — Whether or not the pickup point supports drop off of parcels.
  - `out_delivery` 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/versions/dbe9a4ea0826/schema)
