User Intel
The User Intel API provides intelligence about user attributes, including e-mail and passwords.
The API Base URL is https://api.security.dev
Available Endpoints
Section titled “Available Endpoints”The User Intel API currently offers one endpoint:
- Email: Check if the e-mail address is disposable.
Authentication
Section titled “Authentication”All API requests require authentication using your API key:
Authorization: Bearer <your_app_key>
Email Endpoint
Section titled “Email Endpoint”GET /v1/user-intel/email/{email_address}
Returns if the e-mail address is from a disposable provider.
Request Example
Section titled “Request Example”curl -H"Authorization: Bearer <token>" https://api.security.dev/v1/user-intel/email/[email protected]
Response Example
Section titled “Response Example”{ "valid": true, "disposable": true, "providers": [ "temp-mail.org" ] }