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

# Create a new job

> Creates a new job on the Voice Harbor API after verifying the usage token.



## OpenAPI

````yaml POST /api/jobs
openapi: 3.0.1
info:
  title: Voice Harbor API
  description: >-
    API for managing voice processing jobs, file uploads/downloads, and
    retrieving job content for the Voice Harbor service.
  version: 0.45.1
servers:
  - url: http://voiceharbor.ai
security:
  - bearerAuth: []
paths:
  /api/jobs:
    post:
      summary: Create a new job
      description: >-
        Creates a new job on the Voice Harbor API after verifying the usage
        token.
      responses:
        '200':
          description: Job created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobCreationResponse'
        '401':
          description: Missing Authorization header
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Invalid token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Database error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    JobCreationResponse:
      type: object
      properties:
        job_id:
          type: string
      required:
        - job_id
    Error:
      type: object
      properties:
        error:
          type: integer
        message:
          type: string
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````