Skip to main content
POST
/
user
/
api_key
Create new API key
curl --request POST \
  --url https://api.videodb.io/user/api_key \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "api_key": "sk-xxx"
  }
}
Generate a new API key for authenticating API requests. Each key provides full access to your account resources.
  • API keys provide full access to your account; store securely
  • Each new key can be used immediately for authentication
  • You can generate multiple keys for different applications or environments
  • Keep track of keys used to rotate or revoke them when needed

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Response

200 - application/json

API key created

success
boolean
Example:

true

data
object