RazCrypto RazCrypto Docs
Dashboard Get API Keys
Docs Quick Start

Quick Start (5 Minutes)

Get up and running with RazCrypto in under 5 minutes.

Step 1: Create Account & Get API Keys

  1. Sign Up: razcryptogateway.com/user/signup
  2. Verify Email: Check your inbox
  3. Setup Wallets: Go to Receive Wallet → Add BSC/ETH/Polygon addresses → Click Activate
  4. Create Platform: Go to Platforms → Add Platform
  5. 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

OptionBest ForEffort
Checkout PageMost businesses, e-commerce2 minutes
Custom UICustom designs, mobile apps15-30 minutes
Direct APIAdvanced integrations30+ minutes