> ## 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.

# Get Asset Stats

> Get per-day unique visit and download counts for an asset. Owner-only analytics: works for your own assets; a teammate can read a shared asset but never its analytics. For WHO opened it (identified viewers), use List Asset Visitors instead.



## OpenAPI

````yaml get /api/v2/asset/stats
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/stats:
    get:
      tags:
        - Asset
      summary: Get Asset Stats
      description: >-
        Get per-day unique visit and download counts for an asset. Owner-only
        analytics: works for your own assets; a teammate can read a shared asset
        but never its analytics. For WHO opened it (identified viewers), use
        List Asset Visitors instead.
      operationId: getStats
      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 stats retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        date:
                          type: string
                          description: Day the counts cover, YYYY-MM-DD. e.g. '2026-07-10'
                        totalUniqueVisits:
                          type: number
                          description: Unique visitors that day. e.g. 14
                        totalUniqueDownloads:
                          type: number
                          description: Unique downloaders that day. e.g. 3
                      required:
                        - date
                        - totalUniqueVisits
                        - totalUniqueDownloads
                    description: Per-day unique visit and download counts for the asset.
                required:
                  - _metadata
                  - data
        '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

````