GET /v3/ml-worker/status


This endpoint retrieves the current status of an ML worker process, such as model training or model updating. You must provide the process_id, which is returned from endpoints like /predict/** or /model/update*.

The possible status values returned are:

If the status is FAILURE, the response will include an error_message field detailing the specific issue.

Header

Key Value
Authorization YOUR_API_KEY

Parameters

Key Type Description
process_id String Target Process ID

Example Request

import requests

url = "<https://api.obviously.ai/v3/model/automl/feature-weights/{process_id}>"

headers = {
    "Authorization": "ApiKey <YOUR_API_KEY>",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())

Example Response

{
    "status": "SUCCESS"
}