Merchant API token
Long-lived, explicit, and scoped for server-to-server business operations.
- Format
vou_…v1 - Up to five records per merchant
- One-time plaintext delivery
One secure API for vouchers, memberships, loyalty, merchant operations, and the experiences that keep customers coming back.
curl https://api.usevouchify.com/api/v1/merchant/stats \
-H "Authorization: Bearer ${VOUCHIFY_TOKEN}"const response = await fetch(
'https://api.usevouchify.com/api/v1/merchant/stats',
{
headers: {
Authorization: `Bearer ${process.env.VOUCHIFY_TOKEN}`
}
}
);
const stats = await response.json();import os, requests
response = requests.get(
"https://api.usevouchify.com/api/v1/merchant/stats",
headers={
"Authorization": f"Bearer {os.environ['VOUCHIFY_TOKEN']}"
}
)
stats = response.json(){
"status": "connected",
"auth": "api-token",
"scope": "dashboard:read"
}One integration surface
From a voucher read to a membership issuance, each action is protected by explicit scopes and the merchant's live permissions.
Create templates, issue passes, redeem value, communicate, and understand activity.
Every request re-checks the owner, merchant, role, ownership, and existing permissions.
Read, update, redeem, broadcast, and nudge with tenant-safe merchant context.
Sign in with email + OTP, apply presets, rotate, revoke, and clean up—all without browser storage.
Two credentials. Clear boundaries.
Long-lived, explicit, and scoped for server-to-server business operations.
vou_…v1Short-lived user identity for sensitive account, payment, security, and token management.
API surface
From zero to request
Use the token console to turn an interactive merchant session into a least-privilege integration credential.
Launch the consoleEnter the owner email and the six-digit OTP. The JWT stays in memory only.
Start with a preset, inspect every explicit scope, and set a deliberate expiry.
Copy the one-time secret into your secret manager and rotate on your schedule.
The recurring economy starts here
Precise authentication. Explicit scopes. A reference that stays out of your way.