Complete API documentation for developers
All API requests require authentication using an API key. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY/api/v1/podsReturns a list of all your Pods.
{
"pods": [
{
"id": "pod_abc123",
"subdomain": "my-pod",
"stack_type": "PHP",
"status": "RUNNING",
"created_at": "2025-01-01T00:00:00Z"
}
]
}/api/v1/pods/:idReturns details for a specific Pod.
/api/v1/podsCreates a new Pod with the specified configuration.
{
"subdomain": "my-new-pod",
"stack_type": "NODE",
"domain": "example.com"
}/api/v1/pods/:idUpdates Pod configuration.
/api/v1/pods/:idPermanently deletes a Pod and all its data.
API requests are limited to 100 requests per minute per API key. Rate limit information is included in response headers.