Magic Link
A magic link is a passwordless way to log in where, instead of typing a password, you receive a unique one-time-use link, typically sent by email (and in some deployments by SMS), and clicking it signs you in. It verifies your identity by proving you control the account the link was sent to. Because there is no password to remember or steal, it aims to simplify sign-in for users.
Magic link authentication is a passwordless authentication method that verifies a principal's identity by delivering a unique, one-time-use URL to an out-of-band channel the user is presumed to control, most commonly email and in some deployments SMS. Following the link, typically containing a single-use, time-limited token, establishes an authenticated session; the mechanism relies on demonstrated control of the delivery channel as a possession-based proof rather than on a knowledge factor. As an authentication (identity-verification) step, it addresses who the principal is and does not itself determine authorization; the security properties depend on token entropy, expiry, single-use enforcement, and the security of the delivery channel. Note that email- and SMS-based delivery inherit the trust and threat model of those channels, which vary by deployment.
Why it matters
Magic links address a persistent friction point in authentication: passwords are frequently forgotten, reused across services, and vulnerable to theft. By replacing the knowledge factor with a proof of control over a delivery channel, most commonly email, and in some deployments SMS, magic links aim to simplify sign-in while eliminating the password as a stored secret an attacker can phish or crack. This makes them attractive for consumer-facing applications and low-friction onboarding flows where reducing sign-in abandonment is a priority.
However, the security posture of a magic link is only as strong as the channel that delivers it. Because the mechanism relies on demonstrated control of an email inbox or phone number, it inherits the trust and threat model of that channel: a compromised mailbox, an insecure SMS route, or a forwarded message can undermine the identity assurance the link is meant to provide. The strength of the method also depends on implementation details such as token entropy, expiry windows, and strict single-use enforcement, weaknesses in any of these can allow link replay or interception.
It is important to keep scope precise: a magic link is an authentication step that establishes who a principal is, and it does not by itself determine what that principal is authorized to do. Teams evaluating magic links should weigh the usability gains against the channel-dependent risks and consider where a possession-based proof over email or SMS meets, or falls short of, their required assurance level.
Who it's relevant to
Inside Magic Link
Common questions
Answers to the questions practitioners most commonly ask about Magic Link.
