Create project from template
Creating a project from a template covers how to create a new video project using an existing template. (It does not involve video composition.)
1. API endpoint
https://app.aistudios.com/api/odin/v3/editor/template/${templateId}
2. Request parameters
key | desc | type | required | default |
---|---|---|---|---|
templateId | Unique ObjectId of the template to be used | String | true | - |
aiName | ID of the model to be changed | String | false | - |
clothId | Clothing ID of the model to be changed | String | false | - |
name | Name of the created project | String | false | - |
3. Response parameters
key | desc | type |
---|---|---|
projectId | ID of the created project | String |
4. Sample Request
- cURL
- Node.js
- Python
curl https://app.aistudios.com/api/odin/v3/editor/template/${templateId} \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-G \
-d '{
"model": "M000045058",
"clothes": "BG00002320",
"name" : "New project name"
}'
import axios from "axios";
const token = ${API KEY};
axios.get('https://app.aistudios.com/api/odin/v3/editor/template/${templateId}', {
headers: {
'Authorization': ${token},
'Content-Type': 'application/json'
},
params: {
"model": "M000045058",
"clothes": "BG00002320",
"name" : "New project name"
},
})
.then((res) => {
console.log(res.data);
})
.catch((error) => {
console.error(error);
})
import requests
import json
url = "https://app.aistudios.com/api/odin/v3/editor/template/${templateId}"
params = {
"model": "M000045058",
"clothes": "BG00002320",
"name" : "New project name"
}
headers = {
"Content-Type": "application/json",
"Authorization": ${API TOKEN}
}
r = requests.get(url, params, headers=headers)