Skip to main content
GET
/
run
/
{run_id}
/
status
Get a specific run status
curl --request GET \
  --url https://autonoma.app/api/run/{run_id}/status \
  --header 'autonoma-client-id: <api-key>' \
  --header 'autonoma-client-secret: <api-key>'
{
  "status": "running",
  "url": "https://autonoma.app/run/cmbjp2vva000u0j01vtfu5kdj"
}

Authorizations

autonoma-client-id
string
header
required

Client ID for authentication

autonoma-client-secret
string
header
required

Client secret for authentication

Path Parameters

run_id
string
required

The ID of the run

Example:

"cmbjp2vva000u0j01vtfu5kdj"

Response

Run status

status
string
Example:

"running"

url
string
Example:

"https://autonoma.app/run/cmbjp2vva000u0j01vtfu5kdj"

I