Quick Start (5 Minutes)
Get up and running with RazCrypto in under 5 minutes.
Step 1: Create Account & Get API Keys
- Sign Up: razcryptogateway.com/user/signup
- Verify Email: Check your inbox
- Setup Wallets: Go to Receive Wallet → Add BSC/ETH/Polygon addresses → Click Activate
- Create Platform: Go to Platforms → Add Platform
- Get API Keys: Copy your Public Key and Secret Key
Wallet Activation Required: Each chain must be activated before accepting payments. Activation takes 2-3 minutes per chain.
Your API Keys
// Your API Keys will look like this:
const publicKey = "rz_pub_6d6c763aaa20498c773fb7f0fea8cf5b";
const secretKey = "rz_sec_abcd1234efgh5678ijkl90"; // Keep secure! Server-side only
Step 2: Include the SDK
HTML
<script src="https://razcryptogateway.com/sdk/razcrypto-v2.js"></script>
Step 3: Create Your First Payment
JavaScript
// Initialize SDK
RazCrypto.init({
public_key_id: "rz_pub_your_public_key_here"
});
// Create payment — redirect to checkout
async function createPayment() {
const result = await RazCrypto.createPayment({
amount: 10.00,
email: "[email protected]",
mobile: "9876543210",
callback_url: "https://yourwebsite.com/webhook"
});
// You control the redirect
window.location.href = result.checkout_page;
}
You Control the Redirect: Unlike other gateways, RazCrypto never auto-redirects. You decide when and where to send customers.
Integration Options
| Option | Best For | Effort |
|---|---|---|
| Checkout Page | Most businesses, e-commerce | 2 minutes |
| Custom UI | Custom designs, mobile apps | 15-30 minutes |
| Direct API | Advanced integrations | 30+ minutes |