Developer Hub

Build with LayerV

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.

5-Minute Quickstart

From zero to invisible

Get your API key

Sign up at layerv.ai/signup — free tier includes 50 QURLs/month.

Install the SDK (optional)

npm install @layerv/sdk or use the REST API directly.

Mint your first QURL

Point it at any URL you want to protect. Single-use, time-bound, device-locked.

Access through the QURL

Open the QURL in any browser. The resource materializes for your session only.

Watch it vanish

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)
Resources

Everything you need

API Reference

Complete REST API. Endpoints, schemas, error codes, webhooks.

docs.layerv.ai/api →

JavaScript SDK

TypeScript-first SDK for Node.js, browser, and React Native.

docs.layerv.ai/sdk →

Integration Guides

Step-by-step for Okta, Azure AD, Auth0. Stage 1 and Stage 2.

docs.layerv.ai/guides →

QURL API Product

Capabilities, pricing, request/response examples.

Product overview →

Deployment Options

API, SDK, Sidecar Agent, Enterprise. Compare paths.

Compare options →

OpenNHP Protocol

The open standard. Cloud Security Alliance. 13.7K GitHub stars.

Learn about OpenNHP →
Use Cases

What developers build with LayerV

Most popular

Protect Admin Panels

Add one API call to your auth flow and the admin panel disappears from the internet.

No client needed

Third-Party Access

Contractors and vendors get temporary access without VPN, agents, or credentials.

Forward-looking

AI Agent Access

Scoped, auditable, ephemeral access tokens for service-to-service auth.

Community

Join the conversation

Ready?

Make your first app invisible

Free tier includes 50 QURLs/month. No credit card required.