# List addresses This endpoint allows you to retrieve the list of all addresses associated with a specific customer. You must send the customer ID in the path. In case of success, the request will return a response with status 200 containing the array of addresses. **GET** `/v1/customers/{id}/addresses` ## Request parameters ### Path - `id` (string, required) Customer ID. ## Response parameters This endpoint has no response body. ## Errors | Status | Error | Description | | ------- | ------- | ----------- | | 400 | 100 | The credentials are required. Provide a valid access token in the Authorization header. | | 401 | unauthorized | Unauthorized access. The provided access token is invalid or expired. Verify your credentials and try again. | | 404 | not_found | The requested resource was not found. Verify that the customer ID and address ID are correct and that the address exists. | | 500 | internal_error | Internal server error. Please try again later or contact support if the issue persists. | ## Request example ### cURL ```bash curl -X GET \ 'https://api.mercadopago.com/v1/customers/{id}/addresses' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer ' ``` ## Response example ```json [ { "id": "1162600213", "phone": "string", "name": "string", "floor": "string", "apartment": "string", "street_name": "Rua Exemplo", "street_number": 0, "zip_code": "03940", "city": { "id": "BR-SP-44", "name": "México" }, "state": { "id": "BR-SP", "name": "CDMX" }, "country": { "id": "MX", "name": "México" }, "neighborhood": { "id": "string", "name": "Crédito Constructor" }, "municipality": { "id": "string", "name": "string" }, "comments": "string", "date_created": "2021-03-16T15:45:17.000-04:00", "date_last_updated": "string", "normalized": false, "live_mode": true, "verifications": {} } ] ```