Skip to main content
Version: Latest

Generate API Key

You need an API Key to use the AI Studios V3 API.

Get your API Key now and automate your video export process.

The AI Studios V3 API is available for customers on the Enterprise Plan and above.

1. API endpoint

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

2. Request parameter

keydesctyperequireddefault
appIdAppId required to issue Api Token. You can check it in the profile.Stringtrue-
userKeyUserKey required to issue Api Token. You can check it in the profile.Stringtrue-

Check AppId, UserKey


3. Response parameters

keydesctype
tokenThe Api Access Token used for Api calls.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##"
}'