Decrackle API Docs
  • Welcome
  • Quick Start
  • Reference
    • API Reference
      • Start Enhancing
      • Check Enhancement Status
      • Retrieve Results
Powered by GitBook
On this page
  • Headers
  • Request
  • Response
  1. Reference
  2. API Reference

Check Enhancement Status

You'll need to check the status of the job.

Headers

Key
Value

Content-Type

application/json

X-API-KEY

<Your API Key Here>

Request

GET

/api/v1/audiaize/unify/{id}/status

From the Start Enhancement API get the Job ID and pass it in the GET request

Response

{
    "id": {id},
    "status": "running"
}
{
    "id": {id},
    "status": "completed"
}
  • 200 OK: The request was successful, and the details of the completed job are returned.

  • 400 Bad Request: The server could not understand the request due to invalid syntax.

  • 401 Unauthorized: Authentication is required and has failed or has not yet been provided.

  • 403 Forbidden: The request was a valid request, but the server is refusing action.

  • 404 Not Found: The requested resource (job ID) was not found.

  • 500 Internal Server Error: An unexpected condition was encountered.

Keep polling the API till you get the status: completed

PreviousStart EnhancingNextRetrieve Results

Last updated 1 year ago