Skip to content
GET
/services/{uuid}/start

Start service. Post request is also accepted.

Authorizations​

bearerAuth

Go to Keys & Tokens / API tokens and create a new token. Use the token as the bearer token.

TypeHTTP (bearer)

Parameters​

Path Parameters

uuid*

UUID of the service.

Typestring
Required
formatuuid

Responses​

Start service.
application/json
JSON
{
"message": "Service starting request queued."
}

Playground​

Authorization
Variables
Key
Value

Samples​

Bruno
GET https://app.coolify.io/api/v1/services/%7Buuid%7D/start

Headers
authorization: Bearer Token
cURL
curl 'https://app.coolify.io/api/v1/services/%7Buuid%7D/start' \
  --header 'Authorization: Bearer Token'
JavaScript
fetch('https://app.coolify.io/api/v1/services/%7Buuid%7D/start', {
  headers: {
    Authorization: 'Bearer Token'
  }
})
PHP
$ch = curl_init("https://app.coolify.io/api/v1/services/%7Buuid%7D/start");

curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Bearer Token']);

curl_exec($ch);

curl_close($ch);
Python
requests.get(
    "https://app.coolify.io/api/v1/services/%7Buuid%7D/start",
    headers={
      "Authorization": "Bearer Token"
    }
)
Powered by VitePress OpenAPI