Vulta provides a REST API, JavaScript widget, and iframe embed for adding crypto and card payment acceptance to any website. API keys and webhooks are available on the Business plan. No merchant account or KYC required to get started.
Desarrolladores
Construye en Vulta.
Integra un checkout completo en dos líneas. Recibe webhooks firmados cuando los pagos se confirman. Gestiona todo vía REST API. Sin custodia, sin KYC de tu parte.
Enlaces de pago alojados
Comparte una URL. Funciona en cualquier dispositivo, sin integración requerida. Disponible en todos los planes.
Checkout integrado
Iframe o script tag. Añade un widget de checkout completo a cualquier página. Planes Pro y Business.
Webhooks firmados con HMAC
HTTP POST en cada evento de pago, firmado con tu secreto. Plan Business.
REST API + API keys
Acceso programático con API keys de larga duración. Gestiona enlaces, destinos y más. Plan Business.
Inicio rápido
Server-created checkout in three steps
Use your Vulta API key only on your backend. Your app creates a hosted checkout URL, sends the customer there, and receives a signed webhook when the payment confirms.
Create a checkout session from your backend
Send the amount, currency, and your internal reference ID. Set use_all_payout_destinations to let Vulta snapshot every active wallet address on your account.
curl https://vulta.one/api/checkout/sessions \
-H "Authorization: Bearer vlt_live_..." \
-H "Content-Type: application/json" \
-d '{
"amount_fiat": "29.00",
"fiat_currency": "USD",
"external_reference_id": "sub_123",
"use_all_payout_destinations": true
}'
{
"id": "018f4f3e-2e8b-7a21-9f0c-0b6f56a7d3b1",
"checkout_url": "https://vulta.one/pay/018f4f3e-2e8b-7a21-9f0c-0b6f56a7d3b1"
}Redirect the customer to the provider-ready checkout
Open the returned checkout URL from a user click in your app. Vulta handles wallet selection, card provider routing, crypto payment instructions, and status polling.
// Browser code in your SaaS app
button.addEventListener('click', async () => {
const response = await fetch('/api/billing/vulta-checkout', { method: 'POST' });
const { checkout_url } = await response.json();
window.location.assign(checkout_url);
});Activate access from the signed webhook
Store your subscription or order ID in external_reference_id, verify the HMAC signature, then fulfill the purchase when event_type is payment.confirmed.
Referencia API
REST API
Merchant API endpoints require a user JWT or API key. Payer-facing checkout URLs stay public so customers can complete a payment, but they are not a way to create arbitrary merchant checkouts.
Autenticación
# Recommended for server-to-server integrations
Authorization: Bearer vlt_live_a1b2c3d4e5f6...
# Also accepted for dashboard-style clients
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9...Checkout creation
/api/checkout/sessionsCreate a hosted checkout URLMax/api/payment-requestsCrear una solicitud de pago puntualMax/api/payment-requestsListar solicitudes de pago (transacciones)Headless checkout — no Vulta UI
Build your own card and crypto buttons. Pass the amount and receive a direct provider URL or crypto address — the Vulta domain never appears to your users. Works in Telegram bots, mobile apps, and any custom UI.
/api/checkout/cryptoGet a crypto address for any network / assetBusiness/api/checkout/cardGet a direct card-provider URL (MoonPay, Transak…)Business# Crypto — returns the exact address to show your user
curl https://vulta.one/api/checkout/crypto \
-H "Authorization: Bearer vlt_live_..." \
-H "Content-Type: application/json" \
-d '{
"network": "TRON",
"asset": "USDT",
"amount_fiat": "150.00",
"external_reference_id": "order_456"
}'
{
"payment_request_id": "uuid",
"address": "TJRyWwFs9wTFGZg3JbrVriFbNfCug5tDeC",
"network": "TRON",
"asset": "USDT",
"amount_fiat": "150.00"
}
# Card — returns a direct provider URL, open it for your user
curl https://vulta.one/api/checkout/card \
-H "Authorization: Bearer vlt_live_..." \
-H "Content-Type: application/json" \
-d '{
"amount_fiat": "75.00",
"external_reference_id": "order_789"
}'
{
"payment_request_id": "uuid",
"provider_url": "https://buy.moonpay.com/...",
"provider": "moonpay"
}Your webhook fires with payment.confirmed when payment arrives. Use external_reference_id to match the event to your order.
Account configuration
/api/payment-linksListar tus enlaces de pago/api/payment-linksCrear un enlace de pago/api/payment-links/{id}Actualizar un enlace de pago/api/payment-links/{id}Desactivar un enlace de pago/api/payout-destinationsListar destinos de pago (wallets)/api/payout-destinationsAñadir un destino de pagocurl https://vulta.one/api/payment-requests \
-H "Authorization: Bearer vlt_live_..." \
-H "Content-Type: application/json" \
-d '{
"one_off": {
"pricing_mode": "fixed_fiat",
"amount_fiat": "250.00",
"fiat_currency": "USD",
"external_reference_id": "invoice_1042",
"use_all_payout_destinations": true
}
}'API keys and webhooks
/api/apikeysListar API keysBusiness/api/apikeysGenerar nueva API keyBusiness/api/apikeys/{id}Revocar una API keyBusiness/api/settings/webhookObtener configuración de webhookBusiness/api/settings/webhookActualizar URL + secreto de webhookBusinessWebhooks
Eventos de pago en tiempo real
Disponible en el plan Business. Configura tu endpoint en Ajustes → Webhooks.
Vulta entrega solicitudes POST firmadas con HMAC-SHA256a tu endpoint en cada evento de pago. Verifica el encabezado X-Vulta-Signature para confirmar la autenticidad.
Payload del webhook
// POST https://your-site.com/vulta-webhook
// Headers:
// Content-Type: application/json
// X-Vulta-Signature: <hmac-sha256-hex>
{
"event_type": "payment.confirmed",
"payment_request_id": "a1b2c3d4-e5f6-...",
"external_reference_id": "sub_123",
"amount_fiat": "29.00",
"fiat_currency": "USD",
"status": "CONFIRMED",
"merchant_id": "c3d4e5f6-..."
}Eventos
payment.detectedTransacción encontrada on-chain. Aún no confirmada (0 confirmaciones).payment.confirmedPago confirmado (6+ bloques de profundidad). Seguro para ejecutar.Verificación de firma — Node.js
const crypto = require('crypto');
function verifyVultaWebhook(rawBody, signature, secret) {
const expected = crypto
.createHmac('sha256', secret)
.update(rawBody) // raw bytes, not JSON.stringify
.digest('hex');
return crypto.timingSafeEqual(
Buffer.from(signature),
Buffer.from(expected)
);
}
// Express example
app.post('/vulta-webhook', express.raw({ type: '*/*' }), (req, res) => {
const sig = req.headers['x-vulta-signature'];
if (!verifyVultaWebhook(req.body, sig, process.env.VULTA_WEBHOOK_SECRET)) {
return res.status(401).json({ error: 'Invalid signature' });
}
const event = JSON.parse(req.body);
if (event.event_type === 'payment.confirmed') {
// fulfill order, unlock subscription using external_reference_id
}
res.json({ ok: true });
});Verificación de firma — Python
import hmac, hashlib
def verify_vulta_webhook(raw_body: bytes, signature: str, secret: str) -> bool:
expected = hmac.new(
secret.encode(),
raw_body,
hashlib.sha256
).hexdigest()
return hmac.compare_digest(signature, expected)