Documentation
Documentation & Resources
Technical reference points for the services already visible in the platform and for your first integrations.
In the meantime, support can point you to the right resource: support@nemau-cloud.com
Getting Started
Starter guides for launching a first instance, shaping the network, and exposing a first service
API Reference
Already documented references around authentication, support, and core services
Automation & Examples
Integration examples and automation pointers; public tooling is still evolving
Technical Guides
Architecture and operations notes for services that are already scoped
Quick Start Example
Example API call for launching a compute instance
Create Instance with API
Pythonfrom nemau import NemauClient
# Initialize client
client = NemauClient(
api_key='your-api-key',
region='eu-west-1'
)
# Create a new instance
instance = client.compute.create(
name='my-server',
image='ubuntu-24.04',
size='medium',
ssh_keys=['ssh-key-id']
)
print(f"Instance created: {instance.id}")
print(f"IP Address: {instance.ip_address}")External Resources
Need Help?
Use the documentation to frame the need, then contact us for migration, support, or product-scope questions.

