Hostingowy SDKs Are Live โ Automate Your VPS Infrastructure
Published: July 21, 2026
We believe developers should spend time building, not clicking through dashboards. That's why we're excited to announce the launch of official Hostingowy client SDKs for Node.js and Python โ and an open invitation for the community to build SDKs in any language.
What We're Shipping Today
๐ข Node.js SDK (hostingowy)
npm install hostingowy
The Node.js SDK gives you full programmatic access to the Hostingowy API. Create, manage, and terminate VPS instances, retrieve account information, and query available plans โ all from within your Node.js applications.
const Hostingowy = require('hostingowy');
// Initialize with your API key
const client = new Hostingowy(process.env.HOSTINGOWY_API_KEY);
// List all your servers
const { data: servers } = await client.servers.list();
console.log(You have ${servers.length} server(s));
// Create a new VPS in seconds
const { data: server } = await client.servers.create({
plan: 'starter',
name: 'My Automated Server',
os: 'ubuntu-24.04',
region: 'eu-west'
});
console.log(Server ${server.id} provisioning...);
๐ Python SDK (hostingowy)
pip install hostingowy
Python developers can now manage their Hostingowy infrastructure using familiar Pythonic patterns.
from hostingowy import Hostingowy
client = Hostingowy(api_key=os.environ['HOSTINGOWY_API_KEY'])
List your servers
servers = client.servers.list()
print(f"You have {len(servers['data'])} server(s)")
Create a server
server = client.servers.create(
plan='starter',
name='My Python Server',
os='ubuntu-24.04'
)
print(f"Created: {server['data']['id']}")
Why Build SDKs?
Since launching our REST API in July, we've seen developers using it for everything from auto-scaling deployments to custom hosting dashboards. Official SDKs make this even easier:
- Type safety โ Full TypeScript definitions and Python type hints
- Error handling โ Typed exceptions for every API error code
- Rate limiting โ Built-in awareness of our 500 req/hr limit
- Zero config โ Install and authenticate in one line
- Open source โ MIT licensed, contribution-friendly
What's Next: Community SDKs
We can't build SDKs for every language โ and we shouldn't. The best SDKs are built by the communities that use them.
Here's where we need your help. We'd love to see community-maintained SDKs for:
| Language | Priority | Why |
|---|---|---|
| Go | ๐ฅ High | Most requested by DevOps teams using Kubernetes/Terraform |
| Ruby | ๐ Medium | Popular among Rails deployment workflows |
| PHP | ๐ Medium | Used by WordPress and Laravel hosting customers |
| Rust | ๐ Medium | Growing demand among infrastructure tooling builders |
| Java/Kotlin | ๐ Low | Enterprise Java shops |
| .NET/C# | ๐ Low | Enterprise .NET ecosystem |
If you'd like to build a community SDK, we've made it easy:
- Use our OpenAPI spec โ Generate a client in any language
- Follow our Contributing Guide โ Best practices, testing requirements, and publishing checklist
- Submit a PR โ Add your SDK to the community tracker
What you get for contributing: - Official listing on the Hostingowy SDK ecosystem page - Shoutout in our developer newsletter - Hostingowy swag for significant contributions - Priority support access for your SDK users
Getting Started Today
- Generate an API key โ In your Dashboard โ Settings
- Install the SDK โ
npm install hostingowyorpip install hostingowy - Build something โ Automate deployments, build a dashboard, integrate with your CI/CD
- Share your work โ Tag us on Twitter @hostingowy or join our Discord
The API Under the Hood
If you prefer working directly with HTTP, our REST API is fully documented with an OpenAPI 3.0 spec:
- Base URL:
https://hostingowy.com/api/v1 - Auth: Bearer token via
Authorizationheader - Format: JSON in, JSON out
- Rate limit: 500 requests/hour per key
- Resources: Servers, Account, Plans, Usage, Status
Full documentation at /docs/api.
We're Just Getting Started
The SDK launch is step one in making Hostingowy the most developer-friendly VPS hosting platform in Europe. Coming next:
- WebSocket events โ Real-time server status updates
- One-click app deployments โ WordPress, Laravel, Node.js apps via API
- Managed Kubernetes โ Provision clusters via SDK
- More community SDKs โ Go, Ruby, PHP (with your help!)
Try it today. First month free with code LAUNCH100. No long-term contracts, no hidden fees, real UK engineers on support.