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

# 작업 상태 조회

> 작업 ID로 비동기 작업의 상태, 진행률 및 결과 정보를 조회합니다



## OpenAPI

````yaml ko/api-manual/task-management/get-task-detail.json GET /v1/tasks/{task_id}
openapi: 3.1.0
info:
  title: 작업 상세 정보 조회 API
  description: 작업 ID로 비동기 작업의 상태, 진행률 및 결과 정보를 조회합니다
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: 프로덕션 환경
security:
  - bearerAuth: []
tags:
  - name: 작업 관리
    description: 비동기 작업 관리 관련 API
paths:
  /v1/tasks/{task_id}:
    get:
      tags:
        - 작업 관리
      summary: 작업 상태 조회
      description: 작업 ID로 비동기 작업의 상태, 진행률 및 결과 정보를 조회합니다
      operationId: getTaskDetail
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
          description: 작업 ID, 조회 시 {}를 무시하고 비동기 작업 응답 본문의 id를 경로 끝에 추가하세요
          example: task-unified-1756817821-4x3rx6ny
      responses:
        '200':
          description: 작업 상태 세부 정보
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskDetailResponse'
        '400':
          description: 요청 매개변수 오류, 형식 오류
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_task_id
                  message: Invalid task ID format, must start with 'task-unified-'
                  type: invalid_request_error
                  param: task_id
        '401':
          description: 인증되지 않음, 토큰이 유효하지 않거나 만료됨
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Authentication required
                  type: authentication_error
        '402':
          description: 할당량 부족, 충전 필요
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: quota_exceeded
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: 접근 권한 없음
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: permission_denied
                  message: You don't have permission to access this task
                  type: invalid_request_error
        '404':
          description: 리소스가 존재하지 않습니다
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: task_not_found
                  message: The requested task could not be found
                  type: invalid_request_error
        '429':
          description: 요청 속도 제한 초과
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Rate limit exceeded
                  type: evo_api_error
        '500':
          description: 내부 서버 오류
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Failed to retrieve task status
                  type: api_error
components:
  schemas:
    TaskDetailResponse:
      type: object
      properties:
        created:
          type: integer
          description: 작업 생성 타임스탬프
          example: 1756817821
        id:
          type: string
          description: 작업 ID
          example: task-unified-1756817821-4x3rx6ny
        model:
          type: string
          description: 사용된 모델
          example: gemini-3.1-flash-image-preview
        object:
          type: string
          description: 작업 유형
          enum:
            - image.generation.task
            - video.generation.task
            - audio.generation.task
          example: image.generation.task
        progress:
          type: integer
          minimum: 0
          maximum: 100
          description: 작업 진행률 백분율
          example: 100
        results:
          type: array
          items:
            type: string
            format: uri
          description: 작업 결과 목록 (완료 시 제공)
          example:
            - http://example.com/image.jpg
        status:
          type: string
          description: 작업 상태
          enum:
            - pending
            - processing
            - completed
            - failed
          example: completed
        error:
          type: object
          nullable: true
          description: >-
            작업 실패 시 오류 정보 (status가 failed인 경우에만 표시). 참고: 여기서 error.code는 문자열 유형의
            비즈니스 오류 코드이며 HTTP 상태 코드와 다릅니다. 전체 오류 코드 목록은 오류 코드 참조 문서를 확인하세요.
          properties:
            code:
              type: string
              description: 비즈니스 오류 코드 (문자열 유형)
              example: content_policy_violation
            message:
              type: string
              description: 사용자 친화적인 오류 설명 및 문제 해결 팁
              example: |-
                Content policy violation.
                Your request was blocked by safety filters.
            type:
              type: string
              description: 오류 유형 식별자, 항상 "task_error"
              example: task_error
        task_info:
          type: object
          description: 작업 상세 정보
          properties:
            can_cancel:
              type: boolean
              description: 작업 취소 가능 여부
              example: false
        type:
          type: string
          description: 작업 유형
          enum:
            - image
            - video
            - audio
            - text
          example: image
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: 오류 코드 (문자열 유형)
              example: invalid_task_id
            message:
              type: string
              description: 오류 설명 메시지
              example: Invalid task ID format
            type:
              type: string
              description: 오류 유형
              example: invalid_request_error
            param:
              type: string
              description: 관련 매개변수 이름
              example: task_id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |-
        ##모든 API는 Bearer Token 인증이 필요합니다##

        **API Key 받기:**

        [API Key 관리 페이지](https://evolink.ai/dashboard/keys)를 방문하여 API Key를 받으세요

        **요청 헤더에 추가:**
        ```
        Authorization: Bearer YOUR_API_KEY
        ```

````