Have an account? Sign in →
1
2
3
Your role Setup Go live
Step 1 of 3

What describes you?

Pick your use case — we'll show you exactly how to get live.

🔧
API Developer
Charge per API call. One middleware. No subscriptions, no billing infrastructure.
✍️
Content Publisher
I publish articles, newsletters, or videos. I want to charge per read — with an embedded widget, no install required for my readers.
🏢
Platform Partner
I run a creator platform and want to enable direct creator payments — including per-DM, tips, and time-gated sessions.
🤖
AI Agent Developer
I build autonomous AI systems that need to pay for APIs without subscriptions.
Step 2 of 3

Your integration

Here's exactly what you'll need to get started.

API Developer
curl
# 1. Install the SDK
npm install @vlexivo/sdk

# 2. Protect your route (Express)
const vlexivo = require('@vlexivo/sdk');

app.use('/api/premium', vlexivo.protect({
  apiKey: process.env.VLEXIVO_API_KEY,
  price: '0.001',  // $0.001 per call — you set this
}));

# 3. Test — your key is ready after signup
curl -H "X-Vlexivo-Token: <user_token>" \
     https://yourapi.com/api/premium
Default price per call $0.001 USDC
Your revenue share 85% Free 92% on Pro
Your API key vlx_live_••••••••••••••••
🔑 Your real API key is generated when you create your account. Copy it from your dashboard.
Content Publisher
HTML
<!-- Add to any article page — one tag, done. -->
<script
  src="https://js.vlexivo.dev/v1/paywall.js"
  data-key="vlx_live_••••••••••••••••"
  data-price="0.50"
  data-preview-lines=3
></script>

<!-- That's it. Vlexivo shows a paywall after line 3.
     Readers pay $0.50 to unlock the full article. -->
Default price per article $0.50 USDC
Preview before paywall First 3 lines configurable
Your revenue share 85% Free 92% on Pro
💡 Embedded widget. No install for your readers. One script tag on your page — Vlexivo renders the payment UI inline. Readers pay $0.50 and read. No account, no app, no friction. Monetize every reader, not just subscribers.
Platform Partner
Node.js
// Creator platform integration — generate a 402 challenge
const res = await fetch('https://vlexivo.dev/api/v1/challenge', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ' + process.env.VLEXIVO_SEC_KEY,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    scope: 'per-message',  // pay per DM to creator
    amount: '1.00',          // $1.00 per message
    creator_id: 'creator_abc',
    tip_enabled: true,      // allow fans to tip freely
  }),
});
const { challenge } = await res.json();
// Return 402 to client — widget handles payment UI
Supported scope types per-message  tip  per-session
Your secret API key vlx_sec_••••••••••••••••
Payment processor risk Non-custodial
🏢 Your payment processor could cut you off tomorrow. We can't. Non-custodial settlement — creators receive directly. Censorship-resistant by design. Supports pay-per-DM, timed sessions, and tips.
AI Agent Developer
Python
# pip install vlexivo
from vlexivo import AgentWallet

# Your agent gets its own funded wallet
wallet = AgentWallet(api_key="vlx_sec_••••••••••••••••")

# Pay for any Vlexivo-protected API, headless
response = wallet.get("https://api.example.com/premium/data")

# Check balance — top up via API, no browser needed
print(wallet.balance)  # e.g. {'usdc': 10.00, 'reserved': 0.05}
Agent wallet balance $10.00 USDC demo
Auth method API key no OAuth needed
Your agent API key vlx_sec_••••••••••••••••
🤖 No browser. No subscriptions. Works in LangChain, AutoGen, CrewAI, or any custom pipeline. Agents fund and manage their own wallets via API.
🚀
You're ready to go live

Create your free account

Sign up in 30 seconds — no credit card needed. Your API key, dashboard, and first pricing rule will be ready immediately.

I already have an account
Next steps after signup