Make any web application invisible in under 5 minutes. One API call creates secure, temporary access to resources that don't exist on the network until you say so.
Sign up at layerv.ai/signup — free tier includes 50 QURLs/month.
npm install @layerv/sdk or use the REST API directly.
Point it at any URL you want to protect. Single-use, time-bound, device-locked.
Open the QURL in any browser. The resource materializes for your session only.
Session ends. QURL expires. Resource returns to invisible.
# Mint a QURL curl -X POST https://api.layerv.ai/v1/qurl \ -H "Authorization: Bearer $LAYERV_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "target_url": "https://admin.yourapp.com", "expires_in": "1h", "one_time_use": true }'
import { LayerV } from '@layerv/sdk'; const client = new LayerV(); const { data } = await client.qurl.create({ target_url: 'https://admin.yourapp.com', expires_in: '1h', one_time_use: true }); res.redirect(data.qurl_link);
import layerv client = layerv.Client() qurl = client.qurl.create( target_url="https://admin.yourapp.com", expires_in="1h", one_time_use=True ) return redirect(qurl.data.qurl_link)
Step-by-step for Okta, Azure AD, Auth0. Stage 1 and Stage 2.
docs.layerv.ai/guides →The open standard. Cloud Security Alliance. 13.7K GitHub stars.
Learn about OpenNHP →Add one API call to your auth flow and the admin panel disappears from the internet.
Contractors and vendors get temporary access without VPN, agents, or credentials.
Scoped, auditable, ephemeral access tokens for service-to-service auth.
Free tier includes 50 QURLs/month. No credit card required.