비즈니스 템플릿 조회
비즈니스 목적으로 비디오를 생성하는 데 사용할 수 있는 사전 설정된 프로젝트 정보(템플릿) 목록을 조회합니다.
1. API Endpoint
https://app.aistudios.com/api/odin/balder/dropdown/templates_business
2. Response Parameters
key | desc | type |
---|---|---|
id | AI 모델의 고유 ObjectId | String |
name | 템플릿의 이름 | String |
3. Sample Request
- cURL
- Node.js
- Python
curl https://app.aistudios.com/api/odin/balder/dropdown/templates_business \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X GET
import axios from "axios";
const token = ${API KEY};
const customWebhookUrl = ${webhook_delivery_address};
axios.get('https://app.aistudios.com/api/odin/balder/dropdown/templates_business',
{
headers: {
'Authorization': ${token},
'Content-Type': 'application/json'
}
}
)
.then((res) => {
console.log(res.data);
})
.catch((error) => {
console.error(error);
})
import requests
import json
url = "https://app.aistudios.com/api/odin/balder/dropdown/templates_business"
headers = {
"Content-Type": "application/json",
"Authorization": ${API TOKEN}
}
r = requests.get(url, data=json.dumps(body), headers=headers)