Skip to content

Authentication

SecurityPro API uses API keys to authenticate requests. You can obtain your API key from your dashboard.

Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Example:

curl -H "Authorization: Bearer YOUR_API_KEY" https://api.example.com/users
  1. Redirect user to /oauth2/authorize.
  2. Exchange code at /oauth2/token for access token.
  3. Use token to access secured resources.

SecurityPro supports JWT for stateless authentication in advanced integrations.