Skip to content

Query: Task Results

Overview

  • Path: GET /task/{task_id}
  • Category: Video Models (Video) / Jimeng AI
  • Authentication: Bearer Token
  • Base URL: https://api.gpt.ge

Request Parameters

  • task_id (required, path parameter, string): task ID. Execute the asynchronous task first to obtain this ID, then query the task result.

Request Example

bash
curl -X GET "https://api.gpt.ge/task/14117763723766220057" \
  -H "Authorization: Bearer $YOUR_TOKEN"

Success Response Example

json
{
  "code": 10000,
  "data": {
    "status": "done",
    "resp_data": "{\"infer_ctx\":{\"algorithm_key\":\"x2v_scheduler_vgfm\",\"app_key\":\"2102506761\",\"created_at\":\"2025-05-02T01:19:16.657311524+08:00\",\"generate_id\":\"\",\"log_id\":\"1\",\"params\":{\"app_id\":\"\",\"aspect_ratio\":\"9:16\",\"common_params\":\"\",\"ddim_steps\":0,\"edit_session_id\":\"\",\"fps\":24,\"frames\":121,\"group_name\":\"\",\"height\":720,\"input_image_url\":\"\",\"is_only_sr\":false,\"is_pe\":false,\"llm_result\":\"\",\"media_source\":\"\",\"n_samples\":0,\"negative_prompt\":\"Worst\n+                    quality, Normal quality, Low quality, Low res, Blurry, Jpeg\n+                    artifacts, Grainy, text, logo, watermark, banner, extra\n+                    digits, signature, subtitling, Bad anatomy, Bad proportions,\n+                    Deformed, Disconnected limbs, Disfigured, Extra arms, Extra\n+                    limbs, Extra hands, Fused fingers, Gross proportions, Long\n+                    neck, Malformed limbs, Mutated, Mutated hands, Mutated\n+                    limbs, Missing arms, Missing fingers, Poorly drawn hands,\n+                    Poorly drawn face, Nsfw, Uncensored, Cleavage, Nude,\n+                    Nipples, Overexposed, Plain background, Grainy,\n+                    Underexposed, Deformed structures, naked, undressed, ass,\n+                    big breasts, plump\n+                    breasts\",\"ori_prompt\":\"A golden retriever travels along a winding mountain road pulling a cart with a large orange cat lying on the bedding. The orange cat holds a fan in one hand and smokes a fiery cigarette, surrounded by smoke. It is leisurely fanning itself with the fan. A large gold necklace is around its neck. The rope is tied to the bottom of the cart, and the golden retriever pulls forward with force. A small red flag is attached to the cart, with the words \"May Day Self-Guided Tour\" written on it. Realistic side view, side shot, 18K HD, realistic style.\",\"origin_request_id\":\"\",\"output_height\":0,\"output_width\":0,\"pe_result\":\"\",\"predict_tags_result\":\"\",\"rephraser_result\":\"\",\"req_key\":\"vgfm_t2v_l20\",\"rescale\":0,\"resolution\":\"\",\"scale\":7.5,\"seed\":1460981510,\"shift\":12,\"sr_img2img_fix_steps\":0,\"sr_scale\":0,\"sr_strength\":0,\"sr_upscaler\":\"\",\"steps\":32,\"strength\":0,\"trace_id\":\"\",\"translate_negative_prompt\":\"\",\"translate_prompt\":\"\",\"use_pre_llm\":true,\"use_prompt_aug\":false,\"use_sr\":false,\"version_id\":\"\",\"video_url\":\"https://tosv.byted.org/obj/ic-cv-seed-t2v/x2v/f0e1784bf8be867a4ace15ea62f1ca5177cb1d4d5888b4371267721b2e3137b5_0.mp4\",\"vlm_edit\":\"\",\"vlm_input\":\"\",\"vlm_output\":\"\",\"width\":1280},\"request_id\":\"f0e1784bf8be867a4ace15ea62f1ca5177cb1d4d5888b4371267721b2e3137b5\",\"session_id\":\"\",\"time_stamp\":\"1746119956\"}",
    "video_url": "https://v9-vvecloud.yangyi08.com/f0eaae18f673b7da2583a673d4310a91/6813bb31/video/tos/cn/tos-cn-v-242bcc/okRBiAvIdFwA4AaTEAARifhJhrCY0EKXXAVaQR/?a=7073&ch=0&cr=0&dr=0&er=0&lr=default&cd=0%7C0%7C0%7C0&br=3594&bt=3594&cs=0&ds=3&ft=xztlUQhhe6BMyqD_bskJD12Nzj&mime_type=video_mp4&qs=13&rc=anJ3OGo5cjd0MzgzNGczM0BpanJ3OGo5cjd0MzgzNGczM0BkX3ExMmRzbjZhLS1kXi9zYSNkX3ExMmRzbjZhLS1kXi9zcw%3D%3D&btag=c0000e00008000&dy_q=1746119964&l=02174611996452700000000000000000000ffff0a7aa882324049",
    "image_urls": null,
    "binary_data_base64": []
  },
  "status": 10000,
  "message": "Success",
  "request_id": "20250502011924C67A8E37411A922F5942",
  "time_elapsed": "131.322333ms"
}

Response Fields

  • code (integer): business return code, 10000 indicates success.
  • data.status (string): internal task status, such as done or processing.
  • data.resp_data (string / JSON-string): detailed task response context, usually a JSON string containing generation parameters and internal links.
  • data.video_url (string): generated video download URL.
  • data.image_urls (null|array): image URLs if present.
  • data.binary_data_base64 (array[string]): Base64-encoded image data list if present.
  • status (integer): status code (supplementary to code).
  • message (string): short result description.
  • request_id (string): request identifier for troubleshooting.
  • time_elapsed (string): request elapsed time.