Quickstart

Set up your agent with image and video generation in 5 minutes.

1. Create your account

Sign up at perstudio.ai to get access to your dashboard and API keys.

2. Create an API key

Go to your API Keys page and create a new key.

Warning
The full key is only shown once at creation. Copy and store it securely.

3. Add credits

New accounts start with 100 free tokens — enough for several test generations. When you need more, visit Billing to purchase token packs.

4. Add the skill to OpenClaw

Install the perstudio skill from ClawHub:

Terminal
clawhub install perstudio

Then configure your API key:

Terminal
openclaw config set skills.perstudio.apiKey "ps_live_your_key_here"
Tip
Your agent will auto-discover perstudio's capabilities. It knows what workflows are available and how to pick the right one for each request.

5. Start generating

Your agent can now generate images and videos. Just ask it naturally:

Telegram / Chat
You: Generate a professional product photo of wireless earbuds on marble with studio lighting

Agent: I'll generate that for you using perstudio...

šŸ–¼ļø Here's your product photo — FLUX Product Photography workflow, 12.4s

Try it yourself

You can also call the API directly:

Terminal
curl -X POST https://api.perstudio.dev/generate \
  -H "X-API-Key: ps_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "intent": "Professional product photo of wireless earbuds on marble, studio lighting"
  }'
Response
{
  "job_id": "j_8f2k9x3m",
  "status": "completed",
  "workflow_name": "FLUX Product Photography",
  "output_assets": [
    {
      "asset_id": "a_q7w2e1r4",
      "filename": "earbuds_product.png",
      "mime_type": "image/png"
    }
  ],
  "elapsed_seconds": 12.4
}

Next steps