Skip to main content
GET
/
customers
/
{customer_id}
/
address
Get Customer Addresses
curl --request GET \
  --url https://sandbox-api.prava.space/v1/customers/{customer_id}/address \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "address_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "customer_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
      "name": "Home",
      "address": "123 Main St",
      "city": "Anytown",
      "state": "CA",
      "postal_code": "12345",
      "country": "US",
      "contact_information": "555-1234",
      "created_at": "2025-10-15T05:36:43.000Z",
      "updated_at": "2025-10-15T05:36:43.000Z"
    }
  ],
  "meta": {
    "request_id": "req_12345",
    "timestamp": "2025-10-15T05:36:43.000Z"
  }
}

Authorizations

Api-Key
string
header
required

Path Parameters

customer_id
string<uuid>
required

Response

A list of addresses.

The response is of type any.

I