Skip to main content

AILabTools API - Querying Async Task Results - API

tip

For asynchronous interface, after calling the API, the returned result is not the real request result, you need to save the request_id in the returned result and then call this interface to get the real request result.

Asynchronous task results are valid for 30 minutes. It is recommended that asynchronous task results be queried every 5 seconds.

Request

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

Headers

FieldRequiredTypeDescription
ailabapi-api-keyYESstringApplication API KEY. Get API KEY

Query Params

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

    Response Field Handling Flow
    1. Handle Public Response Fields

      Parse and validate the Public Response Fields, checking the status code or response message to ensure the request is successful and error-free.

    2. Handle Business Response Fields

      If the Public Response Fields are valid and error-free, proceed with processing the business logic in the Business Response Fields.

    Public Response Fields

    Viewing Public Response Fields and Error Codes

    Business Response Fields [type = HD_COLOUR_MIGRATION]

    FieldTypeScopeDescription
    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.

    Business Response Fields [type = GENERATE_CARTOONIZED_IMAGE]

    FieldTypeScopeDescription
    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.

    Response Example

    [type = HD_COLOUR_MIGRATION]

    {
    "request_id": "",
    "log_id": "",
    "error_code": 0,
    "error_msg": "",
    "error_detail": {
    "status_code": 200,
    "code": "",
    "code_message": "",
    "message": ""
    },
    "data": {
    "status": "PROCESS_SUCCESS",
    "image_list": [
    "https://www.ailabtools.com/logo.webp"
    ]
    }
    }

    [type = GENERATE_CARTOONIZED_IMAGE]

    {
    "request_id": "",
    "log_id": "",
    "error_code": 0,
    "error_msg": "",
    "error_detail": {
    "status_code": 200,
    "code": "",
    "code_message": "",
    "message": ""
    },
    "data": {
    "status": "PROCESS_SUCCESS",
    "result_url": "https://www.ailabtools.com/logo.webp"
    }
    }

    Sample Code

    File Storage Policy

    tip
    • Response Files:
      • Storage Duration: 24 hours.
      • Deletion Method: Automatic Deletion upon Timeout.

    Async APIs