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.
The processes endpoint can be used to get more details about an application’s processes, including the type, the start command (labeled entrypoint in the response), and more.
You can obtain the id from the applications/{id} endpoint.
Deprecated in favor of Sevalla API docs.
Response object of application process by ID requests
No or invalid API key provided to the request
Could not find the application process or the user does not have permissions to retrieve data
Error occurred while retrieving application process
{- "process": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "type": "web",
- "display_name": "Web",
- "instance_count": 1,
- "scaling_strategy": {
- "type": "manual",
- "config": {
- "instanceCount": 8
}
}, - "resource_type_name": "s1",
- "entrypoint": "npm start",
- "internal_hostname": "my-service-h8vs7-web.my-service-h8vs7.svc.cluster.local",
- "internal_port": 8080
}
}Deprecated in favor of Sevalla API docs.
Process updated successfully
No or invalid API key provided to the request
Error occurred while updating process
{- "scaling_strategy": {
- "type": "manual",
- "config": {
- "instanceCount": 8
}
}, - "entrypoint": "node index.js"
}{- "process": {
- "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
- "app_id": "882b80af-576c-4fdc-ba4f-b596c83f9ksh",
- "display_name": "Web process",
- "entrypoint": "node index.js",
- "scaling_strategy": {
- "type": "manual",
- "config": {
- "instanceCount": 8
}
}, - "updated_at": 1695300630620,
- "created_at": 1695300630620
}
}