---
title: "Get an employee's work addresses"
method: GET
path: "/v1/employees/{employee_id}/work_addresses"
tags: ["Employee Addresses"]
---

# Get an employee's work addresses

`GET /v1/employees/{employee_id}/work_addresses`

Returns a list of an employee's work addresses. Each address includes its effective
date and a boolean signifying if it is the currently active work address.

scope: `employees:read`

## Path parameters

- `employee_id` string, required

## Headers

- `X-Gusto-API-Version` '2026-06-15'

## Response `200`

List of employee work addresses

- EmployeeWorkAddress[]
  - `uuid` string, required — The unique identifier of this work address.
  - `effective_date` string — The date the employee began working at this location.
  - `active` boolean — Signifies if this address is the active work address for the current date
  - `location_uuid` string — UUID reference to the company location for this work address.
  - `employee_uuid` string — UUID reference to the employee for this work address.
  - `version` string, required — The current version of the object. See the [versioning guide](https://docs.gusto.com/embedded-payroll/docs/idempotency) for information on how to use this field.
  - `street_1` string
  - `street_2` string, nullable
  - `city` string
  - `state` string
  - `zip` string
  - `country` string

## Other responses

- `404` — Not Found

---

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