Skip to content
Subs -25% LAUNCH-SUB
Claws -25% LAUNCH-CLAWS

Data Handling and Privacy

4 min read Security Last updated February 10, 2026

What Data We Handle

ClawHosters stores different types of data in different locations. This page breaks down exactly what is stored where, who can access it, and how it is protected.

Understanding the data flow helps you make informed decisions about what you put into your OpenClaw instance and what stays under your control.

Data Stored by ClawHosters

The ClawHosters platform (clawhosters.com) stores account and billing data needed to run the service.

Data Location Protection
Email address ClawHosters database Stored in PostgreSQL on a dedicated VPS in Germany
Account password ClawHosters database Hashed with bcrypt, original never stored
Billing records ClawHosters database Transaction history retained per German tax law
Instance metadata ClawHosters database Instance name, tier, status, IP address
API tokens ClawHosters database Hashed, only shown once on creation
LLM API keys (BYOK) ClawHosters database Encrypted with Rails credentials at rest

All of this data lives on a server in Germany (Hetzner Cloud, Falkenstein data center). There are no replicas or backups stored outside of Germany.

Data Stored on Your Instance

Your OpenClaw instance runs on its own dedicated VPS. The data on that VPS is under your control.

Data Location Who Can Access
AI conversations and chat history Your VPS Only you (via web UI, channels, or SSH)
Instance configuration (openclaw.json) Your VPS Only you
Installed skills and plugins Your VPS Only you
Container logs Your VPS Only you (and ClawHosters during active support with your permission)

ClawHosters does not have access to the content of your AI conversations. The chat data stays on your VPS and is not transmitted to ClawHosters servers.

If you enable SSH access, you have full root access to the VPS and can inspect, export, or delete any data on it.

Data Stored by Third Parties

Some data is handled by external services as part of payment processing and LLM routing.

Data Service What They Receive
Payment method (credit card, bank) Stripe Card/bank details for payment processing
Cryptocurrency payments Coinbase Commerce Wallet address and payment amount
LLM prompts and responses LLM provider (OpenAI, Anthropic, Google, etc.) Your prompts if using managed LLM or BYOK

Credit card numbers and bank details never touch ClawHosters servers. Stripe handles all payment data and is PCI DSS compliant.

When you use a managed LLM add-on or BYOK, your prompts are sent directly to the LLM provider. ClawHosters routes the request but does not store the prompt content or the response.

Data Encryption

Layer Method
Data in transit TLS (HTTPS) for all web traffic and API calls
Passwords bcrypt hashing
API tokens SHA256 hashing
BYOK API keys Rails encrypted credentials (AES-256-GCM)
Database at rest Hetzner disk encryption on the underlying storage
Instance VPS disk Hetzner disk encryption on the underlying storage

The database and VPS disks use the encryption provided by Hetzner Cloud's storage layer. This protects against physical access to the drives but does not encrypt individual database fields (except for BYOK keys, which are encrypted at the application level).

What We Do Not Store

  • Credit card numbers or bank account details (Stripe handles these entirely)
  • The content of your AI conversations (stays on your VPS)
  • Your LLM prompts or responses (routed, not stored)
  • Hetzner API keys from customers (we use our own provisioning keys)
  • SSH private keys (you keep those; we only store the public key hash)

Data Deletion

When you delete your ClawHosters account:

  1. Instance data -- Your VPS and any snapshots are deleted within 24 hours
  2. Account data -- Email, profile, and instance metadata are deleted within 30 days
  3. Billing records -- Retained for 10 years per German tax law (GoBD)
  4. Stripe data -- Managed by Stripe per their retention policy

You can also delete individual instances at any time from your dashboard. When an instance is deleted, the VPS is destroyed and any associated snapshots are removed.

Data Portability

You can export your data at any time:

  • AI conversations: Access your instance via SSH or the web UI and copy your conversation history
  • Instance configuration: Download your openclaw.json from the dashboard or via SSH
  • Billing history: Available in your dashboard under Billing
  • Account data: Contact support to request a full data export

Related Documentation