POST
/auth/tokenCreate an API token
Exchange workspace credentials for a bearer token valid for 24 hours.
Request body
emailstring · emailRequired"you@company.com"
passwordstring · passwordRequired"your-secure-password"
Responses
200Token issued
tokenstringRequired"buuk_live_abc123"
expiresInintegerRequired86400
401Invalid credentials
Example request
cURL
curl -X POST \ 'https://api.example.com/auth/token' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json'