Skip to main content
GET
/
user
/
api_key
Get user API keys
curl --request GET \
  --url https://api.videodb.io/user/api_key \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": [
    {
      "key": "sk-xxx",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}
Retrieve a list of all API keys associated with your account. Useful for auditing which keys are in use.
  • Returns all API keys created under your account
  • Includes creation date and last usage timestamp for each key
  • Use last_used_at to identify stale or unused keys for cleanup
  • Each key provides full account access; review regularly for security

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Response

200 - application/json

List of API keys

success
boolean
Example:

true

data
object[]