API Getting Started
Integrate Boosta into your applications and workflows.
Overview
The Boosta API allows you to:
- Submit videos for processing programmatically
- Check job status
- List completed projects
- Check credit balance
Base URL
https://boosta.pro/api/v1
Quick Start
1. Get an API Key
- Go to boosta.pro/dashboard/api-keys
- Click Create API Key
- Copy and save your key securely
2. Submit a Job
curl -X POST https://boosta.pro/api/v1/jobs \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"video_url": "https://youtube.com/watch?v=xxx",
"video_type": "conversation",
"config_name": "My Config"
}'
3. Check Status
curl https://boosta.pro/api/v1/jobs/JOB_ID \
-H "Authorization: Bearer YOUR_API_KEY"
4. Get Results
When status is completed, the response includes clip_urls with download links.
Rate Limits
- 60 requests per minute
- 1 active job at a time
See Endpoints for full API reference.