## Retrieve Physical Address

**get** `/print-mail/v1/virtual_mailboxes/{id}/address`

Retrieves the physical address of the virtual mailbox.

### Path Parameters

- `id: string`

### Returns

- `addressLine1: string`

  The address line 1 of the mailbox.

- `countryCode: "US"`

  All of the supported countries for virtual mailboxes.

  - `"US"`

- `addressLine2: optional string`

  The address line 2 of the mailbox.

- `city: optional string`

  The city of the mailbox.

- `postalOrZip: optional string`

  The postal or ZIP code of the mailbox.

- `provinceOrState: optional string`

  The province or state of the mailbox.

### Example

```http
curl https://api.postgrid.com/print-mail/v1/virtual_mailboxes/$ID/address \
    -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY"
```

#### Response

```json
{
  "addressLine1": "145 Mulberry st",
  "city": "New York",
  "provinceOrState": "NY",
  "postalOrZip": "10013",
  "countryCode": "US"
}
```
