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.
You can use the applications endpoint to:
PUT request to update details within the application settings, such as the build path, display name, default branch, and more.You can obtain the company_id from MyKinsta > username > Company settings > Billing details.
The company_id is also shown in the URL in MyKinsta, for example in the URL https://my.kinsta.com/?idCompany=bdd25d71-5706-4890-870f-1adda17c505d the company_id is bdd25d71-5706-4890-870f-1adda17c505d.
Deprecated in favor of Sevalla API docs.
Response object of applications requests
No or invalid API key provided to the request
Could not find the company or the user does not have permissions to retrieve data
Error occurred while retrieving applications
{- "company": {
- "apps": {
- "items": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-name",
- "display_name": "firstsite",
- "status": "deploymentSuccess"
}
]
}
}
}Deprecated in favor of Sevalla API docs.
Response object of applications requests
No or invalid API key provided to the request
Could not find the application or the user does not have permissions to retrieve data
Error occurred while retrieving application
{- "app": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-name",
- "display_name": "firstsite",
- "hibernation_enabled": true,
- "hibernate_after_seconds": 900,
- "status": "deploymentSuccess",
- "deployments": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "branch": "main",
- "commit_message": "docs: example",
- "created_at": 1667489138845
}
], - "processes": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "key": "web"
}
], - "internal_connections": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "app": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-name"
}, - "database": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-db-name"
}
}
]
}
}Deprecated in favor of Sevalla API docs.
Response object of applications requests
One or more of the required parameters were not provided to the request
No or invalid API key provided to the request
Error occurred while deleting application
{- "message": "Application \"54fb80af-576c-4fdc-ba4f-b596c83f15a1\" is being deleted"
}Deprecated in favor of Sevalla API docs.
Application updated successfully
No or invalid API key provided to the request
Error occurred while updating application
{- "build_path": "dist",
- "build_type": "dockerfile",
- "docker_file_path": "Dockerfile",
- "docker_context": ".",
- "display_name": "My App",
- "auto_deploy": true,
- "default_branch": "main",
- "hibernation_enabled": true,
- "hibernate_after_seconds": 900
}{- "app": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "my-app",
- "status": "deploymentInProgress",
- "updated_at": 1695300630620,
- "build_path": "dist",
- "build_type": "dockerfile",
- "docker_file_path": "Dockerfile",
- "docker_context": ".",
- "display_name": "My App",
- "auto_deploy": true,
- "default_branch": "main",
- "hibernation_enabled": true,
- "hibernate_after_seconds": 900
}
}Deprecated in favor of Sevalla API docs.
Response object of applications requests
No or invalid API key provided to the request
Could not find the application or the user does not have permissions to retrieve data
Error occurred while retrieving application
{- "app": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-name",
- "display_name": "firstsite",
- "hibernation_enabled": true,
- "hibernate_after_seconds": 900,
- "status": "deploymentSuccess",
- "deployments": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "branch": "main",
- "commit_message": "docs: example",
- "created_at": 1667489138845
}
], - "processes": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "key": "web"
}
], - "internal_connections": [
- {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "app": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-name"
}, - "database": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "name": "unique-db-name"
}
}
]
}
}