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

# Get resume daily statistics

> Returns a continuous, zero-filled per-day series of view and download counts for the specified resume over the last `days` days (UTC). Requires authentication and resume ownership.



## OpenAPI

````yaml /spec.json get /resumes/{id}/statistics/daily
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.2.2
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /resumes/{id}/statistics/daily:
    get:
      tags:
        - Resume Statistics
      summary: Get resume daily statistics
      description: >-
        Returns a continuous, zero-filled per-day series of view and download
        counts for the specified resume over the last `days` days (UTC).
        Requires authentication and resume ownership.
      operationId: getResumeDailyStatistics
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            description: The unique identifier of the resume.
        - name: days
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 365
            default: 30
            description: Number of trailing days to include.
          allowEmptyValue: true
          allowReserved: true
      responses:
        '200':
          description: The resume's daily view and download statistics.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    date:
                      type: string
                      description: The UTC day in YYYY-MM-DD format.
                    views:
                      type: number
                      description: Number of views recorded on this day.
                    downloads:
                      type: number
                      description: Number of downloads recorded on this day.
                  required:
                    - date
                    - views
                    - downloads
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````