Generate Account
Get started with anonymous payments
Access Dashboard
Already have an API key?
Get started with anonymous payments
Already have an API key?
Save this securely - it cannot be recovered
No email, no username, complete anonymity.
Send 0.01 XMR to activate 1000 sessions
Send XMR here
0/10 checks remaining
Min 0.01 XMR • 1 session per request
VILLN.CASH is a privacy-focused Monero payment gateway that allows merchants to accept cryptocurrency payments without revealing their identity or running their own infrastructure.
Pay 0.01 XMR to get 1000 credits. Each payment session you create costs 1 credit. Credits are valid for 30 days from purchase.
We only store your API key hash and payment sessions. No email, no personal information, complete anonymity. If you lose your API key, it cannot be recovered.
Each payment session expires after 69 minutes if not paid. You can manually check payment status up to 10 times per session.
Payments are confirmed after 3 blockchain confirmations, which typically takes 30-60 minutes.
There is no recovery option. Your API key is your only identifier. Download and store it securely in multiple locations.
No refunds are provided. Once you send XMR and your account is activated, the transaction is final.
Use our REST API to create payment sessions and check their status. See the API Docs for detailed integration instructions.
All API requests require your API key in the header:
x-api-key: your-32-character-api-key
POST /api/create-payment
Request:
{
"amount": 0.01
}
Response:
{
"success": true,
"sessionId": "550e8400-e29b-41d4-a716-446655440000",
"paymentAddress": "89mNan2bNUmU8gSS...",
"amount": 0.01,
"expiresAt": "2024-01-01T12:00:00Z",
"sessionsRemaining": 999
}
GET /api/check-payment/:sessionId
Response (Pending):
{
"success": true,
"sessionId": "...",
"status": "pending",
"paymentAddress": "...",
"amount": 0.01,
"createdAt": "...",
"expiresAt": "..."
}
Response (Confirmed):
{
"success": true,
"sessionId": "...",
"status": "confirmed",
"txHash": "...",
"confirmations": 3,
"completedAt": "..."
}
• Generate API Key: 6 per hour per IP
• Login: 3 per 6 minutes per IP
• API Requests: 100 per hour per API key
• Manual Checks: 10 per payment session