Application Deployments

Note: Application, Database, and Static Site Hosting will be removed from both MyKinsta and the MyKinsta API on 31 January 2026. Your existing services will continue to run without interruption; however, you will need to manage them through the Sevalla dashboard using your MyKinsta credentials.

After this date, all API endpoints related to Application, Database, and Static Site Hosting will be provided exclusively through the Sevalla API. For more details about this transition, see Sevalla.

With the deployments endpoint, you can get deployment details like the deployment progress and more.

You can also send a POST request to the endpoint to manually or programmatically deploy an application. This request can be done from your terminal or using an automated script or CI/CD pipeline (e.g. CircleCI, Jenkins, etc.).

You can obtain the deployment_id from the applications endpoint.

The deployment_id is also shown in the URL within the deployment in MyKinsta, for example in the URL https://my.kinsta.com/app/hello-world-astro-7u8mu/deployment/6783883e-4af8-47ab-a03a-3db6177d4291?idCompany=bdd25d71-5706-4890-870f-1adda17c505d the deployment_id is 6783883e-4af8-47ab-a03a-3db6177d4291.

Get application deployment detailsDeprecated

Deprecated in favor of Sevalla API docs.

SecuritybearerAuth
Request
path Parameters
deployment_id
required
string
Example: 54fb80af-576c-4fdc-ba4f-b596c83f15a1
Responses
200

Response object of application deployment by ID requests

401

No or invalid API key provided to the request

404

Could not find the application deployment or the user does not have permissions to retrieve data

500

Error occurred while retrieving application deployment

get/applications/deployments/{deployment_id}
Request samples
Response samples
application/json
{
  • "deployment": {
    }
}

Manually deploy an applicationDeprecated

Deprecated in favor of Sevalla API docs.

SecuritybearerAuth
Request
Request Body schema: application/json
required
app_id
required
string
branch
string
docker_image
string
is_restart
boolean
Default: false

Set true if you want to release without building your app.

Responses
200

Deployment created successfully

401

No or invalid API key provided to the request

500

Error occurred while creating the deployment

post/applications/deployments
Request samples
application/json
{
  • "app_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
  • "branch": "main",
  • "docker_image": "myimage:v2",
  • "is_restart": false
}
Response samples
application/json
{
  • "deployment": {
    }
}

Promote an applicationDeprecated

Deprecated in favor of Sevalla API docs.

SecuritybearerAuth
Request
Request Body schema: application/json
required
source_app_id
required
string
target_app_ids
required
Array of strings
Responses
200

App promoted successfully

401

No or invalid API key provided to the request

500

Error occurred while promoting the app

post/applications/promote
Request samples
application/json
{
  • "source_app_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
  • "target_app_ids": [
    ]
}
Response samples
application/json
{
  • "promote": [
    ]
}