Easy-to-integrate Multi-Factor Authentication for modern apps and services.
curl -X POST https://api.aka-ms.org/mfa/send \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"user_id": "12345"}'
Works seamlessly with any backend framework or language.
SMS, email, TOTP, push notifications, all in one API.
Get analytics and logs for all MFA attempts.
Meets industry security standards and compliance requirements.
import requests
url = "https://api.aka-ms.org/mfa/send"
headers = {"Authorization": "Bearer YOUR_API_KEY"}
data = {"user_id": "12345"}
response = requests.post(url, json=data)
print(response.json())
curl -X POST https://api.aka-ms.org/mfa/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"user_id": "12345", "code": "678910"}'