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

# Get Document Set

> Get a single document set by ID including all associated documents and users. Organization-scoped.



## OpenAPI

````yaml /api-reference/openapi-v1.json get /api/v1/document-sets/{document_set_id}
openapi: 3.0.0
info:
  title: Artos API
  description: API for document generation, template management, and document organization
  version: 1.0.0
  contact:
    name: Artos Support
    email: internal@artosai.com
servers:
  - url: https://api.artosai.com
    description: Production server
  - url: http://localhost:8000
    description: Local development server
security:
  - bearerAuth: []
paths:
  /api/v1/document-sets/{document_set_id}:
    get:
      tags:
        - Document Sets
      summary: Get Document Set
      description: >-
        Get a single document set by ID including all associated documents and
        users. Organization-scoped.
      operationId: getDocumentSet
      parameters:
        - name: document_set_id
          in: path
          required: true
          description: UUID of document set
          schema:
            type: string
      responses:
        '200':
          description: Document set retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOneDocumentSetResponse'
        '400':
          description: Authentication failed or document set not found
        '403':
          description: Not authorized to access this document set
components:
  schemas:
    GetOneDocumentSetResponse:
      type: object
      properties:
        users:
          type: array
          items:
            type: object
        document_set:
          type: array
          items:
            type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication. Token provides organization-scoped access.

````