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

# Get clause

> Retrieves a single clause with its full content by its unique identifier.



## OpenAPI

````yaml /openapi-2025-01-15.init.json get /clauses/{id}
openapi: 3.0.0
info:
  title: Tomorro API
  description: >
    The Tomorro Public API enables you to programmatically manage contracts,
    members, and counterparties. Build powerful integrations that automate your
    contract management workflows.


    ## API Version: 2025-01-15.init


    This documentation is for API version `2025-01-15.init`.


    > **Warning:** This version is deprecated. This version is deprecated.
    Please upgrade to 2025-01-29.alpha.


    ### Using this version

    ```

    curl -X GET https://api.tomorro.com/members \
      -H "x-api-key: YOUR_API_KEY" \
      -H "tomorro-version: 2025-01-15.init"
    ```
  version: 2025-01-15.init
  contact: {}
servers:
  - url: https://api.tomorro.com/v2
    description: Production
  - url: https://api.demo.tomorro.com/v2
    description: Demo
  - url: http://localhost:3015
    description: Local Development
security: []
tags: []
paths:
  /clauses/{id}:
    get:
      tags:
        - Clauses
      summary: Get clause
      description: >-
        Retrieves a single clause with its full content by its unique
        identifier.
      operationId: ClauseController_getClause
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier (UUID) of the clause
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Clause details with content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClauseResponseDto'
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions
        '404':
          description: Clause not found
        '429':
          description: Too Many Requests - Rate limit exceeded
      security:
        - X-API-KEY: []
components:
  schemas:
    ClauseResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the clause.
          example: 550e8400-e29b-41d4-a716-446655440000
        name:
          type: string
          description: The name of the clause.
          example: Confidentiality
        description:
          type: string
          description: A short description of the clause.
          example: Standard confidentiality clause
        organizationId:
          type: string
          description: The organization this clause belongs to.
          example: 550e8400-e29b-41d4-a716-446655440000
        content:
          description: The raw JSON content of the clause (Slate editor format).
          example:
            - type: paragraph
              children:
                - text: Clause content
          type: array
          items:
            type: string
        listNumbering:
          type: object
          description: List numbering configuration, if any.
          nullable: true
          example: null
        translations:
          description: Per-language translations of the clause.
          example:
            - language: en
              content:
                - type: paragraph
                  children:
                    - text: Clause content
              order: 0
          type: array
          items:
            $ref: '#/components/schemas/ClauseTranslationResponseDto'
        languages:
          description: Languages available for this clause.
          example:
            - en
            - fr
          type: array
          items:
            type: string
        createdAt:
          format: date-time
          type: string
          description: >-
            Time at which the clause was created. Formatted as an ISO 8601
            date-time string.
          example: '2024-01-01T00:00:00.000Z'
        updatedAt:
          format: date-time
          type: string
          description: >-
            Time at which the clause was last updated. Formatted as an ISO 8601
            date-time string.
          example: '2024-01-02T00:00:00.000Z'
      required:
        - id
        - name
        - description
        - organizationId
        - content
        - listNumbering
        - translations
        - languages
        - createdAt
        - updatedAt
    ClauseTranslationResponseDto:
      type: object
      properties:
        language:
          type: string
          description: The language of the translation.
          example: en
        content:
          description: >-
            The rich-text content of the clause in this language (Slate editor
            format).
          example:
            - type: paragraph
              children:
                - text: Clause content
          type: array
          items:
            type: string
        order:
          type: number
          description: The display order of this translation.
          example: 0
      required:
        - language
        - content
        - order
  securitySchemes:
    X-API-KEY:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Get your key at
        https://app.tomorro.com/settings/integrations?integration=api-key

````