Skip to main content
GET
/
api
/
v1
/
projects
/
{projectId}
{
  "NOT_FOUND": {}
}

Overview

Get detailed information about a specific video project by its ID.

Request

Path Parameters

projectId
string
required
The project ID (e.g., prj_abc123xyz)

Headers

Authorization
string
required
Bearer token with your API key

Response

Returns the complete project object with all metadata.

Examples

curl https://api.babou.ai/api/v1/projects/prj_abc123xyz \
  -H "Authorization: Bearer $BABOU_API_KEY"

Response Example

{
  "id": "prj_abc123xyz",
  "name": "Product Launch Video",
  "description": "Marketing video for Q4 2025",
  "settings": null,
  "active_export_id": null,
  "created_at": "2025-12-02T10:00:00Z"
}

Error Responses

NOT_FOUND
404
Project not found or you don’t have access
{
  "error": "Project not found",
  "code": "NOT_FOUND"
}

Next Steps