GET
/
v1
/
job_status
/
{job_id}
curl --request GET \
  --url https://fastapi.mymagic.ai/v1/job_status/{job_id}
{
  "status": "Queued",
  "task_id": "<string>",
  "result": {},
  "error": "<string>"
}

Path Parameters

job_id
string
required

The job ID of the submitted request

Response

200 - application/json
status
enum<string>
required
Available options:
Queued,
Processing,
Waiting for instance,
Completed,
Error
task_id
string

The task ID (only present when status is Completed)

result
object

The result of the processed job (only present when status is Completed)

error
string

Error message (only present when status is Error)