Hostingowy SDKs Are Live โ€” Automate Your VPS Infrastructure in Node.js and Python

We've launched official client SDKs for the Hostingowy API. Manage VPS servers programmatically with our Node.js and Python libraries. Open source, MIT licensed, community contributions welcome.

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...);

View on npm ยท GitHub

๐Ÿ 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']}")

View on PyPI ยท GitHub

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:

LanguagePriorityWhy
Go๐Ÿ”ฅ HighMost requested by DevOps teams using Kubernetes/Terraform
Ruby๐Ÿ“ˆ MediumPopular among Rails deployment workflows
PHP๐Ÿ“ˆ MediumUsed by WordPress and Laravel hosting customers
Rust๐Ÿ“ˆ MediumGrowing demand among infrastructure tooling builders
Java/Kotlin๐Ÿ“Š LowEnterprise Java shops
.NET/C#๐Ÿ“Š LowEnterprise .NET ecosystem

If you'd like to build a community SDK, we've made it easy:

  1. Use our OpenAPI spec โ€” Generate a client in any language
  2. Follow our Contributing Guide โ€” Best practices, testing requirements, and publishing checklist
  3. 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

  1. Generate an API key โ€” In your Dashboard โ†’ Settings
  2. Install the SDK โ€” npm install hostingowy or pip install hostingowy
  3. Build something โ€” Automate deployments, build a dashboard, integrate with your CI/CD
  4. 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 Authorization header
  • 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.

Get Started โ†’

๐Ÿš€ Ready for VPS hosting that actually performs?

Spin up your first UK VPS in under 60 seconds. NVMe storage, UK data centre, root access.

Get Started โ€” From $5/mo
Hostingowy Engineering Team
Hostingowy Team โ€” UK VPS Infrastructure