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

# Get job configuration template

> Returns an empty TOML configuration template for TensorPool Jobs https://docs.tensorpool.dev/features/jobs



## OpenAPI

````yaml https://engine.tensorpool.dev/openapi.json get /job/init
openapi: 3.1.0
info:
  title: TensorPool API
  description: >
    TensorPool API


    All API endpoints (except `/healthz`) require authentication using your
    TensorPool API key.


    ### For REST Endpoints


    Include your API key in the `Authorization` header as a Bearer token:


    ```bash

    Authorization: Bearer YOUR_TENSORPOOL_KEY

    ```

    ### For WebSocket Endpoints


    Send your API key as the first message in JSON format:


    ```json

    {"TENSORPOOL_KEY": "YOUR_TENSORPOOL_KEY"}

    ```
  version: 0.1.0
servers: []
security: []
tags:
  - name: job
    description: >-
      GPU job execution and management. Run workloads on ephemeral clusters with
      automatic cleanup.
  - name: cluster
    description: >-
      GPU cluster provisioning and lifecycle management. Create persistent
      compute resources.
  - name: storage
    description: >-
      Shared storage volume management. Persistent storage that can be attached
      to eligible clusters.
  - name: object-storage
    description: S3-compatible object storage management.
  - name: ssh
    description: SSH key management for secure cluster access.
  - name: user
    description: >-
      User account management including balance, billing, and organization
      operations.
  - name: requests
    description: Cloud resource provisioning request tracking and status monitoring.
paths:
  /job/init:
    get:
      tags:
        - job
      summary: Get job configuration template
      description: >-
        Returns an empty TOML configuration template for TensorPool Jobs
        https://docs.tensorpool.dev/features/jobs
      operationId: job_init_job_init_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobInitResponse'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    JobInitResponse:
      properties:
        message:
          type: string
          title: Message
          description: Help message with documentation link
        empty_tp_config:
          type: string
          title: Empty Tp Config
          description: Empty TOML configuration template
      type: object
      required:
        - message
        - empty_tp_config
      title: JobInitResponse
      description: Response model for GET /job/init endpoint.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````