> For the complete Lynkow documentation index in agent-friendly format, see [llms.txt](/llms.txt).

# List the current customer's addresses

**Publié le** : 2026-08-19
**Catégorie** : Commerce

## `GET /customers/me/addresses`

**List the current customer's addresses**

Lists the authenticated buyer's own live saved addresses. Both
`X-Lynkow-Pk` and `Authorization: Bearer <customer-session-token>` are
required. The response is buyer-specific and is never publicly cached.
`page` starts at 1; `limit` is capped at 100.

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `page` | query | number | No | Number |
| `limit` | query | number | No | Number <= 100 |
| `sortBy` | query | "address_name" \| "created_at" | No | One of: address_name, created_at |
| `sortOrder` | query | "asc" \| "desc" | No | One of: asc, desc |


### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Missing or invalid storefront publishable key |
| `402` | The site subscription does not currently permit this operation |
| `403` | The storefront key origin is not allowed |
| `404` | Site, resource, or commerce feature not found |
| `422` | Validation error |


> **Notes:** A missing or invalid customer session returns 401. Address-book access
> follows the valid customer session and does not depend on the separate
> email-verification state.

### Examples

```curl
curl "https://api.lynkow.com/storefront/{siteId}/customers/me/addresses?page=1&limit=20" \
  -H "X-Lynkow-Pk: lkw_pk_..." \
  -H "Authorization: Bearer <customer-session-token>"
```

---