Features Docs Pricing Buy

Auth & OAuth

POST/api/login
curl -s -X POST "https://alphieui.com/api/login" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
POST/api/oauth/login
curl -s -X POST "https://alphieui.com/api/oauth/login" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
POST/api/oauth/token
curl -s -X POST "https://alphieui.com/api/oauth/token" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'

Notes