Skip to main content

Getting Started

Welcome to Firebirdgen API documentation!

Quick Start

  1. Create an account at firebirdgen.com
  2. Verify your email to activate your account
  3. Purchase credits from the billing page
  4. Generate an API key from your dashboard
  5. 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