{ "projects": [ {} ], "pagination": {} }
Retrieve a paginated list of all your video projects
limit
offset
total
curl https://api.babou.ai/api/v1/projects \ -H "Authorization: Bearer $BABOU_API_KEY" # With pagination curl "https://api.babou.ai/api/v1/projects?limit=50&offset=100" \ -H "Authorization: Bearer $BABOU_API_KEY"
{ "projects": [ { "id": "prj_abc123xyz", "name": "Product Launch Video", "description": "Marketing video for Q4 2025", "settings": null, "active_export_id": "exp_xyz789abc", "created_at": "2025-12-02T10:00:00Z" }, { "id": "prj_def456uvw", "name": "Tutorial Series", "description": "Educational content", "settings": null, "active_export_id": null, "created_at": "2025-12-01T15:30:00Z" } ], "pagination": { "limit": 20, "offset": 0, "total": 42 } }