- Image Translation
- Image AI Tools
- Create product image generation taskPOST
- Query product image generation taskPOST
- Create precise cutout taskPOST
- Query precise cutout taskPOST
- Create basic HD upscaling taskPOST
- Query basic HD upscaling taskPOST
- Create smart cutout taskPOST
- Query smart cutout taskPOST
- Create face swapping taskPOST
- Query face swapping taskPOST
- Create image upscaling taskPOST
- Query image upscaling taskPOST
- Create image variation taskPOST
- Query image variation taskPOST
- Text Service
- Video Translation
Query product image generation task
POST
https://api.piclaza.com/task/v1/image/generate-background/result
Image
Last modified:2025-06-23 10:53:58
Request
Body Params application/json
task_ids
array[string]
required
Example
{
"task_ids": [
"string"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.piclaza.com/task/v1/image/generate-background/result' \
--header 'Content-Type: application/json' \
--data-raw '{
"task_ids": [
"string"
]
}'
Responses
🟢200OK
application/json
Body
code
integer <int32>
optional
message
string
optional
data
object
optional
results
array[object (ImageGenerateBackgroundResultResult) {9}]
optional
Example
{
"code": 0,
"message": "string",
"data": {
"results": [
{
"code": 0,
"message": "string",
"task_id": "string",
"request_id": "string",
"user_id": "string",
"type": "string",
"status": "string",
"meta": {
"name": "string",
"width": 0,
"height": 0,
"label": "string",
"label_score": 0,
"origin_raw_url": "string",
"origin_url": "string"
},
"layers": [
{
"id": "string",
"type": "string",
"object": {
"url": "string",
"bounding_box": "string"
}
}
]
}
]
}
}
Modified at 2025-06-23 10:53:58