# List the existing depot sets Retrieve depot sets using cursor-based paging (see the Cursor-based pagination documentation on the PTV Developer Portal for more details). Endpoint: GET /locations/depot-sets Version: 1.5.0 Security: clientCredentials ## Query parameters: - `cursor` (string) The cursor of the page to retrieve. No cursor is needed to retrieve the first page. - `limit` (integer) The maximum amount of depot sets that should be returned in the response Example: 250 ## Response 200 fields (application/json): - `data` (array) The set of results for the current page. - `data.business_id` (string) The unique identifier for the depot set. Example: "cb1fb12c-0abc-413c-a69d-63c62566685f" - `data.name` (string) The name of the depot set Example: "Belgian Depots" - `data.etag` (string) - `cursor` (object) - `cursor.self` (string) The cursor for this page. Not present when the result contains no data. Example: "c2VsZl9fcGFnZQ" - `cursor.prev` (string) The cursor for the previous page. Not present when fetching data for the first page. Example: "cHJldmlvdXNfX3BhZ2U" - `cursor.next` (string) The cursor for the next page. Not present when fetching data for the last page. Example: "bmV4dF9fcGFnZQ" ## Response 401 fields