☁️ LobstaCloud
Getting Started

Getting Started with LobstaCloud

Get your first Lobsta AI assistant running in the cloud in under 2 minutes.


Sign Up

  1. Visit cloud.redlobsta.com (opens in a new tab) and click Get Started.
  2. Sign in with Google or GitHub (powered by NextAuth).
  3. On first sign-in, a personal organization is automatically created for you with the Owner role.

Dashboard Overview

After signing in, you'll see the main dashboard with:

  • Instances — your running Lobsta instances, their status, and quick actions
  • Team — manage who has access to your organization
  • API Keys — generate keys for programmatic access
  • Settings — organization name and billing

Create Your First Instance

  1. From the dashboard, click New Instance.
  2. Fill in the details:
FieldDescriptionRequirements
NameA unique identifier for this instanceLowercase letters, numbers, hyphens only. 1–50 characters. Must match ^[a-z0-9-]+$
RegionWhere to deploye.g. us-east-1, europe-west1
TierResource allocationSTARTER, PRO, or BUSINESS
  1. Click Create. The instance status will show PROVISIONING while it spins up on Google Cloud Run.
  2. Once provisioned, the status changes to RUNNING and you'll receive a gateway URL.

Tier Resource Allocations

TierMemoryStorageBest For
Starter512 MB1 GBPersonal use, trying it out
Pro2 GB10 GBPower users, small teams
Business8 GB100 GBTeams, production workloads

Instance Limits by Plan

PlanMax Instances
Starter ($5/mo)1
Pro ($25/mo)5
Business ($99/mo)20

If you've reached your limit, you'll see an error: "Instance limit reached. Please upgrade your plan."


API Keys

API keys allow programmatic access to the LobstaCloud API. They are scoped to your organization.

Generate a Key

  1. Go to API Keys in the sidebar.
  2. Click Create API Key.
  3. Enter a name (e.g., "CI/CD Pipeline", "Mobile App").
  4. Optionally set an expiration (1–365 days). If omitted, the key never expires.
  5. Click Create.
⚠️

The full API key (starting with lob_) is shown only once at creation time. Copy it immediately and store it securely. It cannot be retrieved later.

Using an API Key

Include the key in the Authorization header:

curl -H "Authorization: Bearer lob_your_key_here" \
  https://cloud.redlobsta.com/api/instances

See the API Reference for all available endpoints.


Organization Settings

Update Organization Name

  1. Go to Settings.
  2. Edit the Organization Name field.
  3. Click Save.

Delete Organization

🚫

Deleting an organization is permanent. All instances, API keys, team memberships, and invoices are deleted. Only the Owner can delete the organization.

  1. Go to SettingsDanger Zone.
  2. Click Delete Organization.
  3. Confirm the deletion.

Next Steps