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

> Get a single outline by ID. Returns the complete outline including metadata and all sections ordered by index. Organization-scoped.



## OpenAPI

````yaml /api-reference/openapi-v1.json get /api/v1/mrt-outlines/{outline_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/mrt-outlines/{outline_id}:
    get:
      tags:
        - Outlines
      summary: Get Outline
      description: >-
        Get a single outline by ID. Returns the complete outline including
        metadata and all sections ordered by index. Organization-scoped.
      operationId: getOutline
      parameters:
        - name: outline_id
          in: path
          required: true
          description: UUID of outline
          schema:
            type: string
      responses:
        '200':
          description: Outline retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOneMRTOutlineResponse'
        '400':
          description: Authentication failed or outline not found
        '403':
          description: User not authorized
components:
  schemas:
    GetOneMRTOutlineResponse:
      type: object
      properties:
        outline:
          type: object
          description: Complete outline with sections
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication. Token provides organization-scoped access.

````