Get Project
curl --request GET \
--url https://api.example.com/api/v1/projects/{projectId} \
--header 'Authorization: <authorization>'import requests
url = "https://api.example.com/api/v1/projects/{projectId}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.example.com/api/v1/projects/{projectId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/projects/{projectId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/projects/{projectId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/projects/{projectId}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/projects/{projectId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"NOT_FOUND": {}
}Projects
Get Project
Retrieve details about a specific project
GET
/
api
/
v1
/
projects
/
{projectId}
Get Project
curl --request GET \
--url https://api.example.com/api/v1/projects/{projectId} \
--header 'Authorization: <authorization>'import requests
url = "https://api.example.com/api/v1/projects/{projectId}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.example.com/api/v1/projects/{projectId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/projects/{projectId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/projects/{projectId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/projects/{projectId}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/projects/{projectId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"NOT_FOUND": {}
}Overview
Get detailed information about a specific video project by its ID.Request
Path Parameters
string
required
The project ID (e.g.,
prj_abc123xyz)Headers
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"
async function getProject(projectId: string) {
const response = await fetch(
`https://api.babou.ai/api/v1/projects/${projectId}`,
{
headers: {
'Authorization': `Bearer ${process.env.BABOU_API_KEY}`
}
}
);
return await response.json();
}
const project = await getProject('prj_abc123xyz');
console.log(`Project: ${project.name}`);
import os
import requests
def get_project(project_id):
response = requests.get(
f'https://api.babou.ai/api/v1/projects/{project_id}',
headers={'Authorization': f'Bearer {os.environ["BABOU_API_KEY"]}'}
)
return response.json()
project = get_project('prj_abc123xyz')
print(f'Project: {project["name"]}')
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
404
Project not found or you don’t have access
{
"error": "Project not found",
"code": "NOT_FOUND"
}
Next Steps
List Chapters
View chapters in this project
Export Project
Export project to video
⌘I