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

# Get history

> Retrieve the history of a specific workspace.



## OpenAPI

````yaml get /workspaces/history
openapi: 3.0.0
info:
  title: Mudstack API
  version: 2.41.0
servers:
  - url: https://api.mudstack.com
security: []
tags: []
paths:
  /workspaces/history:
    get:
      tags:
        - Workspace History
      description: Retrieve the history of a specific workspace.
      parameters:
        - $ref: '#/components/parameters/account_id'
        - $ref: '#/components/parameters/workspace_id'
      responses:
        '200':
          description: A paginated list of workspace history entries
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkspaceHistory'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Workspace not found
      security:
        - Authentication: []
components:
  parameters:
    account_id:
      name: x-account-id
      in: header
      required: true
      schema:
        type: string
        format: uuid
    workspace_id:
      name: x-workspace-id
      in: header
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    WorkspaceHistory:
      type: object
      required:
        - id
        - workspace_id
        - user_id
        - type
        - record_id
        - data
      properties:
        id:
          type: string
          description: Unique identifier for the workspace history record.
        workspace_id:
          type: string
          description: Identifier of the workspace associated with this history record.
        user_id:
          type: string
          description: Identifier of the user who made the change.
        type:
          type: string
          description: Type of the history record.
        record_id:
          type: string
          description: Identifier of the record associated with this history entry.
        data:
          type: object
          description: Additional data related to the history record.
  securitySchemes:
    Authentication:
      type: http
      scheme: bearer
      bearerFormat: JWT

````