Authentication
POST
{% if has_social_auth and social_providers %}
/api/auth/login/
OR
{% endif %}
{% if use_passwordless and passwordless_handlers %}
PASSWORDLESS
{% for handler in passwordless_handlers %}
{% if handler.name == 'email' %}
POST
/api/auth/passwordless/email/initiate/
POST
/api/auth/passwordless/webauthn/initiate/
POST
{% endif %}
/api/auth/logout/
Registration
POST
/api/auth/registration/
User Profile
GET
/api/auth/user/
PUT
/api/auth/user/
Password Management
{% if is_authenticated %}
{% else %}
{% endif %}
{% if not is_authenticated %}
{% endif %}
{% if is_authenticated %}
POST
/api/auth/password/change/
POST
/api/auth/password/reset/
POST
/api/auth/password/reset/confirm/
Multi-Factor Authentication
Loading methods...
Passkeys & Security Keys
Registered Credentials
{% for cred in webauthn_credentials %} {% endfor %}Add New
{% endif %}
POST
/api/auth/webauthn/credentials/register_options/
Social Connections
Connected Accounts
{% for connection in social_connections %} {% endfor %}Connect More
{% endif %}