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

# Exportaufgabe abrufen

Übergeben Sie die von [Exportaufgabe erstellen](/docs/de/api_reference/endpoints/youtube_export/create) zurückgegebene Exportaufgaben-ID, nicht die ursprüngliche Vozo-Aufgaben-ID. Fragen Sie den Status ab, bis `status` `done` oder `failed` ist. `studio_url` ist die Bearbeitungsseite von YouTube Studio, wenn eine YouTube-Video-ID verfügbar ist; `error_code` gibt, falls verfügbar, den Grund für den Veröffentlichungsfehler an.


## OpenAPI

````yaml GET /v1/youtube/exports/{id}
openapi: 3.1.0
info:
  title: Vozo API
  description: API for Generating, Editing and Localizing Talking Videos.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.vozo.ai
security:
  - bearerAuth: []
paths:
  /v1/youtube/exports/{id}:
    get:
      summary: Get a YouTube export task
      parameters:
        - name: id
          in: path
          required: true
          description: >-
            Export task ID returned when the export was created; this is not the
            source Vozo task ID.
          schema:
            type: string
      responses:
        '200':
          description: Current export task status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/YouTubeExportStatus'
        '400':
          description: Export task not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/YouTubeApiError'
components:
  schemas:
    YouTubeExportStatus:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - pending
            - processing
            - done
            - failed
          description: Current export status.
        studio_url:
          type: string
          format: uri
          description: >-
            YouTube Studio edit URL, returned once a YouTube video ID is
            available.
        error_code:
          type: string
          description: Publishing failure reason, returned when available.
    YouTubeApiError:
      type: object
      properties:
        code:
          type: integer
          description: Vozo API error code.
        message:
          type: string
        errors:
          type: array
          items:
            type: string
          description: Additional error details, when available.
        server_ts:
          type: integer
        timestamp:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: APIKey
      description: >-
        Bearer authentication header of the form Bearer <api_key>, where
        <api_key> is your API Key. The token in the sample code is referring to
        this api_key as well.

````