Skip to main content

AILabTools API - Querying asynchronous task results - API

Request

  • URL: https://www.ailabapi.com/api/image/asyn-task-results
  • Method: GET
FieldRequiredTypeDescription
ailabapi-api-keyYESstringApplication API KEY.

Query

FieldRequiredTypeScopeDescription
job_idYESstringThe request_id returned by the asynchronous API.
typeYESstring
  • HD_COLOUR_MIGRATION
  • GENERATE_CARTOONIZED_IMAGE
  • Asynchronous task type.
  • HD_COLOUR_MIGRATION: HD color migration
  • GENERATE_CARTOONIZED_IMAGE: AI Cartoon Generator
  • Response

    Parameters [type = HD_COLOUR_MIGRATION]

    FieldTypeScopeDescription
    error_codeintegerStatus Code.
    error_code_strstringError Code.
    error_msgstringError Message.
    request_idstringRequest ID.
    log_idstringLog ID.
    dataobjectThe content of the result data returned.
    +statusstring
  • QUEUING
  • PROCESSING
  • PROCESS_SUCCESS
  • PROCESS_FAILED
  • TIMEOUT_FAILED
  • LIMIT_RETRY_FAILED
  • Asynchronous task status.
  • QUEUING: The task is queued.
  • PROCESSING: Asynchronous processing.
  • PROCESS_SUCCESS: Processing was successful.
  • PROCESS_FAILED: Processing failed.
  • TIMEOUT_FAILED: The task timeout did not complete.
  • LIMIT_RETRY_FAILED: Exceeded maximum number of retries for processing failures.
  • +image_listarray of stringHD color migration processing results.
    tip

    The URL address is a temporary address, valid for 24 hours, and will not be accessible after it expires. If you need to save the file for a long time or permanently, please visit the URL address within 24 hours and download the file to your own storage space.

    Parameters [type = GENERATE_CARTOONIZED_IMAGE]

    FieldTypeScopeDescription
    error_codeintegerStatus Code.
    error_code_strstringError Code.
    error_msgstringError Message.
    request_idstringRequest ID.
    log_idstringLog ID.
    dataobjectThe content of the result data returned.
    +statusstring
  • QUEUING
  • PROCESSING
  • PROCESS_SUCCESS
  • PROCESS_FAILED
  • TIMEOUT_FAILED
  • LIMIT_RETRY_FAILED
  • Asynchronous task status.
  • QUEUING: The task is queued.
  • PROCESSING: Asynchronous processing.
  • PROCESS_SUCCESS: Processing was successful.
  • PROCESS_FAILED: Processing failed.
  • TIMEOUT_FAILED: The task timeout did not complete.
  • LIMIT_RETRY_FAILED: Exceeded maximum number of retries for processing failures.
  • +result_urlstringAI Cartoon Generator processing results.
    tip

    The URL address is a temporary address, valid for 24 hours, and will not be accessible after it expires. If you need to save the file for a long time or permanently, please visit the URL address within 24 hours and download the file to your own storage space.

    Example

    [type = HD_COLOUR_MIGRATION]

    {
    "error_code": 0,
    "error_code_str": "",
    "error_msg": "",
    "request_id": "",
    "log_id": "",
    "data": {
    "status": "PROCESS_SUCCESS",
    "image_list": [
    "https://www.ailabtools.com/logo.webp"
    ]
    }
    }

    [type = GENERATE_CARTOONIZED_IMAGE]

    {
    "error_code": 0,
    "error_code_str": "",
    "error_msg": "",
    "request_id": "",
    "log_id": "",
    "data": {
    "status": "PROCESS_SUCCESS",
    "result_url": "https://www.ailabtools.com/logo.webp"
    }
    }

    Code example