← Back to Documentation

Quick Start

Get up and running with Hellcat in 5 minutes

1. Create an Account

Sign up at hellcat.pyrosec.gg/signup to get started. New accounts receive $10 in free credits.

2. Generate an API Key

Navigate to your dashboard and create a new API key:

$ export HELLCAT_API_KEY="hc_..."

3. Write Your First Workflow

Create a file called hello.hell:

workflow "Hello Hellcat" {
  version = "1.0.0"
  mode = browser_automation

  step "Visit Website" {
    navigate("https://example.com")

    var title = document.title
    console.log("Page title: " + title)

    screenshot("example.png")
    return { title: title }
  }
}

4. Run the Workflow

Execute your workflow using the CLI:

$ hellcat run hello.hell
⚡ Initializing...
✓ Workflow deployed: workflow_abc123
✓ Job completed in 2.3s
💰 Fuel cost: 1,247 units ($0.006)

5. View Results

Check your workflow results in the dashboard or via API:

$ hellcat jobs get workflow_abc123