API methods

The API address is https://deep-image.ai/rest_api/
There are two methods for the scheduling image processing and one for retrieving the results. With "process_result" method, image can be processed and if the result is available during 25 seconds, the url to the result will be returned. The second method - "process" - always schedules a processing job and the user has to wait for the result with "result" method.
Processing methods supports both form-data and json content types.
post
/rest_api/process_result
Apply processing to one or more images
post
/rest_api/process
Schedules image processing job
get
https://deep-image.ai/rest_api/result
/{hash}
Result
Returns processing job result.
Parameters
Header
x-api-key*
API Key
Responses
200: OK
In progress result
200: OK
Complete result
When processing is in progress, the result endpoint should be periodically checked for the complete status.