apiKey: ********************{
"imageUrls": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
],
"targetWidth": 1920,
"targetHeight": 1080,
"backgroundColor": "#000000",
"outputFormat": "jpg",
"quality": 90
}curl --location --request POST '/api/image/process' \
--header 'apiKey: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"imageUrls": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
],
"targetWidth": 1920,
"targetHeight": 1080,
"backgroundColor": "#000000",
"outputFormat": "jpg",
"quality": 90
}'{
"errorMessage": "string",
"code": 0,
"aboutUrl": "string",
"traceId": "string",
"imageUrls": [
"https://example.com/processed_image1.jpg",
"https://example.com/processed_image2.jpg"
],
"downloadUrls": [
"https://example.com/download/processed_image1.jpg",
"https://example.com/download/processed_image2.jpg"
],
"successCount": 2,
"failureCount": 0,
"processingTime": 1500
}