---
title: "Get all additional customer addresses"
method: GET
path: "/customers/{customer_id}/addresses"
tags: ["Customers"]
---

# Get all additional customer addresses

`GET /customers/{customer_id}/addresses`

Get information about all customer addresses.

Additional addresses are stored on a customer account separately from the primary address recorded in the customer's personal information. Each additional address has an address type (for example, delivery, billing, or work) and full address detail.

Related: [GET /customer-address-types](https://carecloud.readme.io/reference/getcustomeraddresstypes)

## Path parameters

- `customer_id` string, required

## Query parameters

- `count` integer
- `offset` integer
- `sort_field` string
- `sort_direction` 'ASC' | 'DESC'
- `customer_address_type_id` string

## Headers

- `Accept-Language` string

## Response `200`

OK

- object
  - `data` object
    - `addresses` AdditionalAddress[] — Collection of customer addresses.
      - `additional_address_id` string — Unique additional address ID.
      - `address_type` string, required — Type of the address. Address type is set only for additional customer addresses. Default address in customer structure has no type.
      - `address` Address, required — The Address Structure in the API defines the standardized format for representing addresses throughout the system. This resource ensures consistency and accuracy in capturing address details, facilitating seamless integration and data exchange.
        - `address1` string — Street name of the address.
        - `address2` string — Street number (Land registry number).
        - `address3` string — House number.
        - `address4` string — Next address data.
        - `address5` string — Next address data.
        - `address6` string — Next address data.
        - `address7` string — Next address data.
        - `zip` string — ZIP code.
        - `city` string — City.
        - `country_code` string — ISO code of the country. *Possible values de / gb / us / it / cz / etc*
    - `total_items` integer — The number of all found customer addresses.

## Other responses

- `400` — Bad input parameter. The response body's `error.error_data.invalid_params[]` array lists the parameters that caused the failure, each carrying a `reason` code. See the `BadRequestErrorBody` schema for the generic reason taxonomy. Operations with domain-specific business rules document additional reasons at the operation level.
- `401` — The client has invalid credentials or auth token.
- `403` — The client does not exist or the client tried to access an unauthorized property or resource.
- `404` — The resource was not found.
- `405` — The resource does not support the specified HTTP method.
- `429` — Too many requests - more than the resource limit.
- `500` — Server is not working as expected.
- `503` — Temporary state when the service is temporarily unavailable, overloaded or there is a maintenance window.

---

[API](https://skmtc.net/crmcarecloud/apis/rest-api-reference.md) · [All operations](https://skmtc.net/crmcarecloud/apis/rest-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/crmcarecloud/rest-api-reference/revisions/329c06dbf8d9/schema)
