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

# Create Transcription Job From Url



## OpenAPI

````yaml post /api/v1/transcribe/url
openapi: 3.1.0
info:
  title: Fennec ASR API
  version: 0.1.0
servers:
  - url: https://api.fennec-asr.com
security: []
paths:
  /api/v1/transcribe/url:
    post:
      summary: Create Transcription Job From Url
      operationId: create_transcription_job_from_url_api_v1_transcribe_url_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TranscriptionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptionJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    TranscriptionRequest:
      properties:
        audio:
          anyOf:
            - type: string
              minLength: 1
              format: uri
            - type: string
          title: Audio
          description: >-
            A publicly accessible URL to an audio file OR a base64-encoded data
            URI.
          examples:
            - https://filesamples.com/samples/audio/mp3/sample-3.mp3
            - data:audio/mp3;base64,SUQz...
        context:
          anyOf:
            - type: string
              maxLength: 1000
            - type: 'null'
          title: Context
          description: >-
            Optional context to guide the ASR model. Doubles cost and increases
            latency.
        formatting:
          anyOf:
            - $ref: '#/components/schemas/FormattingOptions'
            - type: 'null'
          description: >-
            Rules for applying formatting to the final transcript based on
            detected pauses.
        apply_contextual_correction:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Apply Contextual Correction
          description: >-
            If true, performs an additional AI pass to correct contextual
            errors. Requires 'context' to be effective.
          default: false
      type: object
      required:
        - audio
      title: TranscriptionRequest
      description: |-
        Defines the request body for the non-streaming transcription endpoint.
        Accepts an audio source as a URL or a data URI.
    TranscriptionJob:
      properties:
        job_id:
          type: string
          format: uuid
          title: Job Id
        status:
          type: string
          title: Status
          default: queued
        detail:
          type: string
          title: Detail
          default: Your transcription job has been successfully queued.
      type: object
      required:
        - job_id
      title: TranscriptionJob
      description: Response model when a non-streaming job is successfully queued.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FormattingOptions:
      properties:
        newline_pause_threshold:
          anyOf:
            - type: number
            - type: 'null'
          title: Newline Pause Threshold
          description: >-
            Insert a single newline if the pause between words exceeds this
            duration (in seconds).
          examples:
            - 0.8
        double_newline_pause_threshold:
          anyOf:
            - type: number
            - type: 'null'
          title: Double Newline Pause Threshold
          description: >-
            Insert a double newline if the pause between words exceeds this
            duration (in seconds).
          examples:
            - 1.5
      type: object
      title: FormattingOptions
      description: >-
        Defines formatting options for the final transcript based on pause
        lengths.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````