본문으로 건너뛰기
버전: 최신 버전

API 키 발급하기

AI Studio V3 API를 사용하려면 API Key가 필요합니다.

API 키를 생성해서 비디오 내보내기 프로세스 자동화를 경험해 보세요.

AI Studio V3 API는 Pro 이상의 구독 고객이 이용할 수 있습니다.

1. API endpoint

https://app.deepbrain.io/api/odin/v3/auth/token

2. Request parameter

keydesctyperequireddefault
appIdApi Token 발급에 필요한 AppId. Profile에서 확인이 가능합니다.Stringtrue-
userKeyApi Token 발급에 필요한 userKey. Profile에서 확인이 가능합니다.Stringtrue-

AppId, UserKey 확인하기


3. Response parameters

keydesctype
tokenApi 호출에 사용하는 Api Access Token.String

4. Sample Request

curl https://app.deepbrain.io/api/odin/v3/auth/token  \
-H "Content-Type: application/json" \
-X POST \
-d '{
"appId": "##YOUR_APP_ID##",
"userKey": "##YOUR_USER_KEY##"
}'