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

# List Asset Visitors

> List the identified viewers of an asset — every code-verified viewer with open counts and first/last-seen times: share-link recipients (via 'share') and workspace-verified members (via 'workspace'). Anonymous public visitors never appear here — use Get Asset Stats for aggregate counts. Owner-only analytics, like Get Asset Stats.



## OpenAPI

````yaml get /api/v2/asset/visitors
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/asset/visitors:
    get:
      tags:
        - Asset
      summary: List Asset Visitors
      description: >-
        List the identified viewers of an asset — every code-verified viewer
        with open counts and first/last-seen times: share-link recipients (via
        'share') and workspace-verified members (via 'workspace'). Anonymous
        public visitors never appear here — use Get Asset Stats for aggregate
        counts. Owner-only analytics, like Get Asset Stats.
      operationId: listVisitors
      parameters:
        - schema:
            type: string
            description: >-
              Asset UUID, from assets_list. e.g.
              '4f1e2a90-8b3d-4c21-9e07-2a1b3c4d5e6f'
          required: true
          description: >-
            Asset UUID, from assets_list. e.g.
            '4f1e2a90-8b3d-4c21-9e07-2a1b3c4d5e6f'
          name: uuid
          in: query
      responses:
        '200':
          description: Asset visitors listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        email:
                          type: string
                          description: Viewer's code-verified email. e.g. 'sam@acme.com'
                        via:
                          type: string
                          enum:
                            - share
                            - workspace
                          description: >-
                            How the viewer got access. One of: share (a
                            share-link recipient), workspace (a
                            workspace-verified member). e.g. 'share'
                        openCount:
                          type: number
                          description: How many times they opened the asset. e.g. 2
                        firstSeenAt:
                          type: string
                          description: >-
                            ISO-8601 time of their first open. e.g.
                            '2026-07-08T15:00:00.000Z'
                        lastSeenAt:
                          type: string
                          description: >-
                            ISO-8601 time of their most recent open. e.g.
                            '2026-07-11T09:45:00.000Z'
                      required:
                        - email
                        - via
                        - openCount
                        - firstSeenAt
                        - lastSeenAt
                  total:
                    type: number
                required:
                  - _metadata
                  - data
                  - total
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                required:
                  - _metadata
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          example: 0
          description: API usage
        requestId:
          type: string
          example: requestId
          description: Request ID
        message:
          type: string
          example: message
          description: Message
        timestamp:
          type: string
          example: '2021-01-01T00:00:00.000Z'
          description: Timestamp
      required:
        - requestId
        - timestamp
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````