Getting Started
Welcome to Firebirdgen API documentation!
Quick Start
- Create an account at firebirdgen.com
- Verify your email to activate your account
- Purchase credits from the billing page
- Generate an API key from your dashboard
- Start making requests using our API
Base URL
https://api.firebirdgen.com
Authentication
All API requests require authentication using a Bearer token:
Authorization: Bearer YOUR_API_KEY
Quick Example
curl -X POST https://api.firebirdgen.com/api/tasks \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"requestParams": {
"projectName": "sora2",
"modelName": "sora2_text_to_video",
"prompt": "A beautiful sunset over the ocean with gentle waves",
"aspectRatio": "9:16",
"duration": 10,
"callbackUrl": "https://your-domain.com/webhook"
}
}'
All Videos Are Watermark-Free
✨ All generated videos are completely watermark-free and ready for professional use!
Next Steps
- Create Task - Learn how to create video generation tasks
- Check out code examples in multiple languages