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

# List resume version history

> Returns the recent version-history snapshots for a resume (id, label, and timestamp only). Snapshots are taken at milestones such as imports, AI edits, and periodic manual saves. Only the resume owner can list versions. Requires authentication.



## OpenAPI

````yaml /spec.json get /resumes/{resumeId}/versions
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/{resumeId}/versions:
    get:
      tags:
        - Resumes
      summary: List resume version history
      description: >-
        Returns the recent version-history snapshots for a resume (id, label,
        and timestamp only). Snapshots are taken at milestones such as imports,
        AI edits, and periodic manual saves. Only the resume owner can list
        versions. Requires authentication.
      operationId: listResumeVersions
      parameters:
        - name: resumeId
          in: path
          required: true
          schema:
            type: string
            description: The ID of the resume whose version history to list.
      responses:
        '200':
          description: A list of recent version snapshots, newest first.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: The ID of the version snapshot.
                    label:
                      type: string
                      description: A short description of what triggered the snapshot.
                    createdAt:
                      type: string
                      format: date-time
                      x-native-type: date
                      description: The date and time the snapshot was taken.
                  required:
                    - id
                    - label
                    - createdAt
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````