{ "id": "<string>", "name": "<string>", "description": {}, "settings": {}, "active_export_id": {}, "created_at": "<string>", "VALIDATION_ERROR": {}, "UNAUTHORIZED": {} }
Create a new video project
application/json
prj_[A-Za-z0-9]{21}
curl -X POST https://api.babou.ai/api/v1/projects \ -H "Authorization: Bearer $BABOU_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Product Launch Video", "description": "Marketing video for Q4 2025 product launch" }'
{ "id": "prj_abc123xyz", "name": "Product Launch Video", "description": "Marketing video for Q4 2025 product launch", "settings": null, "active_export_id": null, "created_at": "2025-12-02T10:00:00Z" }
{ "error": "Validation failed", "code": "VALIDATION_ERROR", "hint": "Name must be between 1 and 30 characters" }
{ "error": "Unauthorized - Invalid API key", "code": "UNAUTHORIZED" }