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

# List Customer Saved Addresses

> Return the customer's saved addresses (rows from the new
`customer_addresses` table written by the storefront customer
`/me/addresses` endpoints). Default-first, newest-next.

Empty for sync-imported customers; their addresses live in the
legacy JSONB column on the customer row and are surfaced through
the main `/customers/{id}` response.



## OpenAPI

````yaml /api-reference/openapi.json get /api/dashboard/customers/{customer_id}/addresses
openapi: 3.1.0
info:
  title: Agentic Commerce API
  description: |2-

        Agentic Commerce API - E-commerce Backend

        ## APIs

        ### Dashboard API (`/api/dashboard`)
        Authenticated endpoints for merchant management:
        - Products, Variants, Options
        - Inventory management
        - Orders and fulfillment
        - Customers
        - Collections

        ### Storefront API (`/api/storefront`)
        Public endpoints for client websites:
        - Product catalog
        - Collections
        - Cart management
        - Checkout

        ### Sync API (`/api/sync`)
        Integration endpoints for zunkiree-search:
        - Product sync
        - Availability checks
        - Order creation from AI widget
        
  version: 1.0.0
servers: []
security: []
paths:
  /api/dashboard/customers/{customer_id}/addresses:
    get:
      tags:
        - Dashboard
        - Customers
      summary: List Customer Saved Addresses
      description: |-
        Return the customer's saved addresses (rows from the new
        `customer_addresses` table written by the storefront customer
        `/me/addresses` endpoints). Default-first, newest-next.

        Empty for sync-imported customers; their addresses live in the
        legacy JSONB column on the customer row and are surfaced through
        the main `/customers/{id}` response.
      operationId: >-
        list_customer_saved_addresses_api_dashboard_customers__customer_id__addresses_get
      parameters:
        - name: customer_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Customer Id
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
        - name: X-Stella-Merchant-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Stella-Merchant-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CustomerSavedAddress'
                title: >-
                  Response List Customer Saved Addresses Api Dashboard
                  Customers  Customer Id  Addresses Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CustomerSavedAddress:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
        company:
          anyOf:
            - type: string
            - type: 'null'
          title: Company
        address1:
          type: string
          title: Address1
        address2:
          anyOf:
            - type: string
            - type: 'null'
          title: Address2
        city:
          type: string
          title: City
        province:
          anyOf:
            - type: string
            - type: 'null'
          title: Province
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Postal Code
        country:
          type: string
          title: Country
        phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone
        is_default:
          type: boolean
          title: Is Default
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - first_name
        - last_name
        - company
        - address1
        - address2
        - city
        - province
        - postal_code
        - country
        - phone
        - is_default
        - created_at
        - updated_at
      title: CustomerSavedAddress
      description: |-
        A row from `customer_addresses` (Phase 2 of the agentic
        storefront platform). Distinct from the legacy JSONB
        `customers.addresses` column — the new table is the only source
        that supports id-addressable CRUD from the customer's own
        /me/addresses endpoints.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````