Skip to main content

Welcome to Percify!

This guide will walk you through everything you need to know to start creating amazing AI-powered content with Percify. In just 15 minutes, you’ll:
  • ✅ Set up your account and API access
  • ✅ Generate your first AI avatar
  • ✅ Convert it to an animated video
  • ✅ Add a voice track
  • ✅ Understand credits and pricing
  • ✅ Explore the community

Step 1: Create Your Account

1

Sign Up

Visit percify.io and click “Sign Up”You can sign up with:
  • Email and password
  • Google account
  • GitHub account
2

Verify Email

Check your inbox for a verification email and click the confirmation link
3

Claim Starter Credits

New users receive 50 free credits to explore all features!This is enough to:
  • Generate 10-25 avatars (Flux model)
  • Create 1-2 short videos
  • Clone 10 voices
  • Try all premium features

Step 2: Get Your API Key

API keys are optional if you only want to use the web dashboard. Skip to Step 3 if you’re just getting started with the UI.
For programmatic access:
1

Navigate to Settings

Click your profile icon → Settings → API Keys
2

Create API Key

Click “Create New Key” and give it a descriptive name like “My First App”
3

Copy and Store Securely

# Store in environment variable
export PERCIFY_API_KEY="your_api_key_here"

# Or in .env file
echo "PERCIFY_API_KEY=your_api_key_here" >> .env
Keep your API key secret! Never commit it to version control or share it publicly.

Step 3: Generate Your First Avatar

Via Web Dashboard

1

Open Avatar Studio

From the dashboard, click “Avatar Studio” or the big “Create Avatar” button
2

Write Your Prompt

Describe what you want to create. Be specific!Good examples:
  • “cyberpunk warrior with neon armor, city background, dramatic lighting”
  • “friendly robot character, cartoon style, colorful”
  • “professional business portrait, confident smile, office background”
Tips:
  • Include: subject, style, setting, mood, lighting
  • Be descriptive but concise (1-2 sentences)
  • Use negative prompts to exclude unwanted elements
3

Choose Settings

  • Model: Start with “Flux” (2 credits, fast)
  • Aspect Ratio: 1:1 for profile pictures, 16:9 for videos
  • Style Preset: Try “Professional” or “Cyberpunk”
4

Generate

Click “Generate” and wait 3-5 secondsYour avatar will appear in the preview. If you like it, great! If not, adjust your prompt and try again.

Via API

const fetch = require('node-fetch');

async function createAvatar() {
  const response = await fetch('https://api.percify.io/v1/avatars/generate', {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${process.env.PERCIFY_API_KEY}`,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      prompt: 'mystical wizard with glowing staff, fantasy art style',
      model: 'flux',
      aspectRatio: '1:1'
    })
  });
  
  const avatar = await response.json();
  console.log('Avatar created:', avatar.id);
  console.log('Image URL:', avatar.imageUrl);
  
  return avatar;
}

createAvatar();

Step 4: Convert to Video

1

Select Your Avatar

In the dashboard, find the avatar you just created
2

Click 'Convert to Video'

This opens Video Studio with your avatar pre-loaded
3

Set Duration

  • Start with 3-5 seconds (free with base cost)
  • Choose motion style: “Moderate” for natural movement
  • Select format: MP4 (best compatibility)
4

Generate Video

Click “Generate Video”Processing takes 30-45 seconds. You’ll see a progress bar.Cost: 30 credits for 5-second video
5

Preview and Download

Once complete, preview your video and download it!

Step 5: Add Voice (Optional)

1

Clone a Voice

  • Record 15-30 seconds of clear speech
  • Or use a preset voice
  • Upload to Voice Studio
  • Wait 30 seconds for cloning (5 credits)
2

Generate Speech

  • Write your text (e.g., “Welcome to my channel!”)
  • Select your cloned voice
  • Generate audio (5 credits + 1 per second)
3

Sync with Video

  • In Video Studio, add your audio track
  • Enable “Auto Lip-Sync”
  • Re-render video with audio

Understanding Credits

Credits are Percify’s currency for AI operations:

Avatar (Flux)

2 credits per generation Fast, good quality

Avatar (Premium)

5 credits per generation Highest quality

Video (5s)

30 credits base cost +6 credits per extra second

Voice Clone

5 credits one-time Reuse unlimited times

Audio (10s)

15 credits total 5 base + 1 per second

Premium Features

10-30 credits Percify Yourself, Avatar Cast

Purchase More Credits

When you run low:
  1. Go to Settings → Credits
  2. Choose a pack:
    • 100 credits - $9.99
    • 500 credits - $49.99 (+50 bonus)
    • 1000 credits - $89.99 (+150 bonus)
  3. Pay via Stripe or Razorpay
  4. Credits appear instantly

Pro Tip: Subscription Plans

Monthly plans include credits + perks:
PlanPriceCredits/moPerks
Free$00Basic features
Pro$29/mo500Priority processing, advanced models
EnterpriseCustomCustomDedicated support, custom limits

Next Steps

Explore More Features

Join the Community

Common Questions

  • Verify your email (+10 credits)
  • Complete profile (+5 credits)
  • Share your first creation (+10 credits)
  • Refer friends (50 credits per signup)
  • Avatars: 3-10 seconds
  • Videos: 30 seconds to 5 minutes (depends on length)
  • Voice cloning: 30-60 seconds
  • Audio generation: 2-5 seconds
Yes! All content you create is yours to use commercially. See our Terms of Service for details.
  • Adjust your prompt and regenerate
  • Try different models
  • Use negative prompts to exclude unwanted elements
  • Check out the Prompt Engineering Guide
  • Keys are encrypted at rest
  • Use HTTPS only
  • Rotate keys regularly
  • Never share or commit to version control

Troubleshooting

IssueSolution
Generation stuckWait 30s, refresh page. Contact support if >2 minutes
Insufficient creditsPurchase credits or wait for monthly renewal
Poor quality resultsUse more descriptive prompts, try premium models
API errorsCheck API key, ensure valid JSON, review error message
Payment failedVerify payment method, check for sufficient funds

Need Help?


Ready to create? Head to the Dashboard and start generating amazing AI content!