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

# Get a job envelope (queued templates)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/jobs/{envelopeId}
openapi: 3.1.0
info:
  title: AskEditor Platform API
  version: 1.0.0-preview
  description: >-
    The video editing API for AI agents. Every response is wrapped as { success,
    data }. Templates are addressed by id; synchronous templates return their
    result in the run call, queued templates resolve through the jobs envelope.
servers:
  - url: https://api.askeditor.com
security:
  - bearerAuth: []
paths:
  /v1/jobs/{envelopeId}:
    get:
      summary: Get a job envelope (queued templates)
      operationId: getJob
      parameters:
        - name: envelopeId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Job state; completed jobs carry finalUrl + canvasUrl.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    $ref: '#/components/schemas/Job'
components:
  schemas:
    Job:
      type: object
      properties:
        status:
          type: string
        finalUrl:
          type: string
        canvasId:
          type: string
        canvasUrl:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````