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

# Get Repurpose Template

> Get Repurpose Template.



## OpenAPI

````yaml GET /ai/repurpose/template
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /ai/repurpose/template:
    get:
      tags:
        - AI
      summary: Get the tenant repurpose template
      description: >-
        Returns the stored template for the tenant, creating it with the service
        defaults (`en` / `professional` / `medium` and per-platform tone,
        length, CTA, hashtag style and max hashtag counts) on first read.
      responses:
        '200':
          description: OK (template)
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Repurpose template loaded
                data:
                  tenantId: '{{objectId}}'
                  defaults:
                    language: en
                    tone: professional
                    length: medium
                  platforms:
                    linkedin:
                      tone: professional
                      length: medium
                      ctaTemplate: Share your perspective in the comments.
                      hashtagStyle: industry and thought-leadership hashtags
                      maxHashtags: 5
                    twitter:
                      tone: casual
                      length: short
                      ctaTemplate: Reply with your take.
                      hashtagStyle: short and specific hashtags
                      maxHashtags: 3
                    telegram:
                      tone: friendly
                      length: medium
                      ctaTemplate: Read the full article for details.
                      hashtagStyle: topic hashtags
                      maxHashtags: 6
                    instagram:
                      tone: friendly
                      length: medium
                      ctaTemplate: Save this post and share it with your network.
                      hashtagStyle: discoverability hashtags
                      maxHashtags: 8
                  updatedBy: null
                  createdAt: '2025-10-01T12:00:00.000Z'
                  updatedAt: '2025-10-01T12:00:00.000Z'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden (role not allowed)
        '500':
          description: Failed to load the template
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````