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

# List my assigned relationships (household alias)

> Alias for `GET /api/v1/household-assignments`. Rewrites to the household-assignments route; response JSON uses `households` field name.



## OpenAPI

````yaml /openapi.json get /api/v1/relationship-assignments
openapi: 3.0.3
info:
  title: Headlight API
  version: 1.0.0
  description: >-
    Initial public reference for a small subset of Headlight HTTP APIs. This
    document is maintained alongside the application; expand coverage only after
    verifying each operation against the live codebase. The in-browser API
    playground may not work from the docs domain without additional cross-origin
    configuration.
servers:
  - url: https://app.withheadlight.com
    description: Production
security: []
paths:
  /api/v1/relationship-assignments:
    get:
      tags:
        - Relationships
      summary: List my assigned relationships (household alias)
      description: >-
        Alias for `GET /api/v1/household-assignments`. Rewrites to the
        household-assignments route; response JSON uses `households` field name.
      responses:
        '200':
          description: Assigned households
          content:
            application/json:
              schema:
                type: object
                properties:
                  households:
                    type: array
                    items:
                      $ref: '#/components/schemas/HouseholdSummary'
                required:
                  - households
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/RateLimit'
      security:
        - BearerAuth: []
        - SessionAuth: []
components:
  schemas:
    HouseholdSummary:
      type: object
      description: >-
        List item shape includes members, assignments, and counts; this schema
        is abbreviated for docs.
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - name
    ErrorBody:
      type: object
      properties:
        error:
          type: string
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorBody'
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorBody'
    RateLimit:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
              resetAt:
                type: string
                format: date-time
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: 'API key authentication. Use `Authorization: Bearer idx_...`.'
    SessionAuth:
      type: apiKey
      in: cookie
      name: wos-session
      description: WorkOS session cookie from the Headlight web app.

````