Authentication
SecurityPro API uses API keys to authenticate requests. You can obtain your API key from your dashboard.
API Key
Section titled “API Key”Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYExample:
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.example.com/usersOAuth 2.0
Section titled “OAuth 2.0”- Redirect user to
/oauth2/authorize. - Exchange code at
/oauth2/tokenfor access token. - Use token to access secured resources.
JSON Web Tokens (JWT)
Section titled “JSON Web Tokens (JWT)”SecurityPro supports JWT for stateless authentication in advanced integrations.