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

# List template scripts



## OpenAPI

````yaml /openapi/task-service.yaml get /api/v1/templates/{id}/scripts
openapi: 3.0.3
info:
  title: Titan Task Service API
  description: Tasks, executions, templates, datasets, results, and media CDN.
  version: '1.0'
servers:
  - url: https://api.webscraping.titannet.io
    description: Production
security: []
tags:
  - name: Tasks
  - name: Executions
  - name: Templates
  - name: Media
paths:
  /api/v1/templates/{id}/scripts:
    get:
      tags:
        - Templates
      summary: List template scripts
      operationId: getTemplateScripts
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: include_inactive
          in: query
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessEnvelope'
components:
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        success:
          type: boolean
        data: {}

````