REST API for SecurityRIP
SecurityRIP uses HTTP-only session cookies. Log in via POST /api/v1/auth/login and the session cookie is set automatically. All subsequent requests should include credentials: 'include'.
Alternatively, pass the JWT token in the Authorization: Bearer <token> header.
https://api.securityrip.com/api/v1/auth/register/api/v1/auth/login/api/v1/auth/logout/api/v1/auth/profile/api/v1/auth/profile/api/v1/scans/api/v1/scans/api/v1/scans/:scanId/api/v1/scans/stats/overview/api/v1/stripe/subscriptions/api/v1/stripe/billing-portalcurl -X POST https://api.securityrip.com/api/v1/scans \
-H "Content-Type: application/json" \
-b "token=<your-session-token>" \
-d '{
"url": "https://yourapp.com",
"scanType": "AUTOMATED"
}'