๐ API Keys
๐ Quick Start
Use the Hostingowy API to programmatically manage your VPS instances.
# List your servers
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hostingowy.com/api/v1/servers
# Create a new VPS
curl -X POST -H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"plan":"vps-1","region":"lon1","os":"ubuntu-22.04"}' \
https://hostingowy.com/api/v1/servers
# Get server details
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hostingowy.com/api/v1/servers/SERVER_ID
โ Getting Started Checklist
- Create an API key below
- Use the key to authenticate API requests
- List your servers with
GET /api/v1/servers - Provision a new VPS with
POST /api/v1/servers - Check server status with
GET /api/v1/servers/:id
โ API Key Generated
Save this token โ it will not be shown again!
hkey_...
โ ๏ธ Treat this like a password. Anyone with this key can access your account.
Your API Keys
Generate New API Key
Hold Ctrl/Cmd to select multiple scopes
No API keys yet. Generate one to get started with the Hostingowy API.
๐ API Usage Limits
Each API key allows 1,000 requests per hour. Rate limits reset on the first request each hour. If you need higher limits, contact support.