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.

Result

GET https://deep-image.ai/rest_api/result/{hash}

Returns processing job result.

Headers

NameTypeDescription

x-api-key*

String

API Key

{
    "status": "in_progress",
    "job": "54e96ab8-6b3a-11ed-a4de-de00db6fc1c1"
}

When processing is in progress, the result endpoint should be periodically checked for the complete status.

Last updated