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

# List My Devices

> List devices belonging to the authenticated user.

Requires auth — guest devices (user_id NULL) are not enumerable
cross-session because there's no token-based ACL on them.



## OpenAPI

````yaml https://api.vellaro.io/openapi.json get /api/v1/devices
openapi: 3.1.0
info:
  title: Vellaro API
  description: Vellaro 2026 — E-commerce API
  version: 0.1.0
servers:
  - url: https://api.vellaro.io
    description: Produzione
security: []
tags: []
paths:
  /api/v1/devices:
    get:
      tags:
        - devices
      summary: List My Devices
      description: |-
        List devices belonging to the authenticated user.

        Requires auth — guest devices (user_id NULL) are not enumerable
        cross-session because there's no token-based ACL on them.
      operationId: list_my_devices_api_v1_devices_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_list_DeviceOut__'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_list_DeviceOut__:
      properties:
        data:
          anyOf:
            - items:
                $ref: '#/components/schemas/DeviceOut'
              type: array
            - type: 'null'
          title: Data
        meta:
          anyOf:
            - $ref: '#/components/schemas/PaginationMeta'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
      type: object
      title: ApiResponse[list[DeviceOut]]
    DeviceOut:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        platform:
          type: string
          title: Platform
        locale:
          anyOf:
            - type: string
            - type: 'null'
          title: Locale
        app_version:
          anyOf:
            - type: string
            - type: 'null'
          title: App Version
        device_model:
          anyOf:
            - type: string
            - type: 'null'
          title: Device Model
        push_consent:
          type: boolean
          title: Push Consent
        last_seen_at:
          type: string
          title: Last Seen At
      type: object
      required:
        - id
        - platform
        - locale
        - app_version
        - device_model
        - push_consent
        - last_seen_at
      title: DeviceOut
    PaginationMeta:
      properties:
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - page_size
        - total
        - total_pages
      title: PaginationMeta
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````