Link for Login

The fully hosted Link for Login service

Two API calls. No redirects. No token leakage. Hosted magic-link auth.

One API Call

Start passwordless authentication. Call it from your backend, get a JSON response.

POST/api/v1/auth/start
curl -X POST https://www.linkforlogin.com/api/v1/auth/start \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "user@example.com",
  "method": "ota",
  "redirectUrl": "https://myapp.com/verify"
}'

Uses the same TuraLogin API key across all Tura services.

Auth without passwords

Two API Calls

POST /start sends the link. POST /verify confirms the click. That's the whole integration.

Backend-Only

Tokens never touch the browser. No XSS surface, no client-side state to leak.

You Own Sessions

We verify identity. You create cookies and sessions however you want. We store nothing.

Set Up with AI

Paste this into Cursor, Claude, or ChatGPT to set up a Link for Login integration.

AI Prompt
Add Link for Login to my project. Docs at https://www.linkforlogin.com/SKILL.md . Hosted magic-link auth. Two API calls: start and verify. Implement backend-only auth.

Tura Cloud

One account, one key. Link for Login connects with every Tura Cloud service.

Developer APIs

API-first building blocks for custom integrations.