Bulk processing

Methods process_result and process can process one or more images.
It is possible to send more than one image with "urls" parameter.
{
"urls": [
"https://deep-image.ai/api-example.png",
"https://deep-image.ai/api-example2.jpg"
],
"width": 1000
}
The result of the above request that was send with process_result:
{
"status": "complete",
"job": "daed6c88-c25e-11ed-b500-92631771ed1d",
"results": [
{
"job": "dbaa2aa8-c25e-11ed-bbfe-668140caf6e4",
"status": "complete",
"url": "https://deep-image.ai/images/2023-03-14/7c278066-48c0-4ce0-bcd8-75549ad6c6f4.png",
"original_url": "https://deep-image.ai/api-example.png"
},
{
"job": "dce9ddf0-c25e-11ed-bbfe-668140caf6e4",
"status": "complete",
"url": "https://deep-image.ai/images/2023-03-14/b838297f-4775-4fe8-abeb-8ddb2553c7eb.jpg",
"original_url": "https://deep-image.ai/api-example2.jpg"
}
]
}