> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beachdepository.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Inbound Shipment Address

> Get the address a shipment should be sent to

Returns the address to send this shipment to, along with a ready-to-display version in `formatted`.

Each address includes the account's vault ID, which identifies the shipment on arrival. Fetch the address per shipment and use it exactly as returned.

**Permission:** `inbound_shipments:read`

## Path parameters

<ParamField path="id" type="string" required>
  The inbound shipment ID
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "firstName": "Jane",
    "lastName": "Smith",
    "street": "1200 Vault Way",
    "addressLine2": "PV-100234",
    "city": "Dallas",
    "state": "TX",
    "zip": "75001",
    "country": "US",
    "formatted": "Jane Smith\n1200 Vault Way\nPV-100234\nDallas, TX 75001",
    "vaultId": "PV-100234",
    "placement": "address_line_2"
  }
}
```

<ResponseField name="formatted" type="string">
  The address as newline-separated lines, ready to display.
</ResponseField>

<ResponseField name="vaultId" type="string">
  The vault ID included in the address.
</ResponseField>

<ResponseField name="placement" type="string">
  Where the vault ID appears in the address — `address_line_2` or `last_name`. When it is
  `last_name`, the vault ID is part of `lastName` and `addressLine2` is `null`.
</ResponseField>

<Note>Returns `404` if the shipment does not belong to your organization.</Note>
