API 키 발급하기
AI Studio V3 API를 사용하려면 API Key가 필요합니다.
API 키를 생성해서 비디오 내보내기 프로세스 자동화를 경험해 보세요.
AI Studio V3 API는 Pro 이상의 구독 고객이 이용할 수 있습니다.
1. API endpoint
https://app.aistudios.com/api/odin/v3/auth/token
2. Request parameter
key | desc | type | required | default |
---|---|---|---|---|
appId | Api Token 발급에 필요한 AppId. Profile에서 확인이 가능합니다. | String | true | - |
userKey | Api Token 발급에 필요한 userKey. Profile에서 확인이 가능합니다. | String | true | - |
3. Response parameters
key | desc | type |
---|---|---|
token | Api 호출에 사용하는 Api Access Token. | String |
4. Sample Request
- cURL
- Node.js
- Python
curl https://app.aistudios.com/api/odin/v3/auth/token \
-H "Content-Type: application/json" \
-X POST \
-d '{
"appId": "##YOUR_APP_ID##",
"userKey": "##YOUR_USER_KEY##"
}'
import axios from "axios";
axios.post(`https://app.aistudios.com/api/odin/v3/auth/token`,
{
"appId": "##YOUR_APP_ID##",
"userKey": "##YOUR_USER_KEY##"
},
{
headers: {
'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/v3/auth/token"
body = {
"appId": "##YOUR_APP_ID##",
"userKey": "##YOUR_USER_KEY##"
}
headers = {
"Content-Type": "application/json"
}
r = requests.post(url, data=json.dumps(body), headers=headers)