Swipelux

Quickstart guide

This is a quick step-by-step guide on how to integrate the Swipelux Crypto Rails into your service.

Prerequisites

  • API key: Navigate to the Developers > API keys page in the Admin Panel to obtain your secret API key for Crypto Rails. Keep this secure and never expose it publicly.

Core Flow

Our API follows a simple four-step integration pattern. Follow our Core Flow guide for complete interactive examples.

Integration Steps:

  1. Create Customer - Create a customer to enable transfers and wallet management
  2. Add Wallet - Create wallets for blockchain networks you plan to use
  3. Make Transfer - Create transfers to move funds between fiat and cryptocurrency
  4. Track Status - Configure webhooks to receive real-time status updates

Each step includes interactive request builders and copy-paste ready code examples.

Asset Support

Stablecoin Focus: We specialize in stablecoin operations (USDC, USDT, DAI, EURC) across major networks like Ethereum, Polygon, and Arbitrum for optimal stability and low fees.

Alternative Cryptocurrencies: We also support major alts including ETH, BTC, and network-native tokens for advanced use cases. View full asset list.

Enhancements

Once you have the core flow working, explore these advanced features:

Ready to start? Begin with creating your first customer! 🚀

Quick Start: Your First API Call

The fastest way to get started is with a simple customer creation:

curl https://wallet.swipelux.com/v1/customers \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: YOUR_SECRET_API_KEY' \
  --data '{}'

That's it! An empty POST request creates a customer instantly. No complex data required to get started.

Next: Follow our Core Flow guide for complete interactive examples that will take you from customer creation to your first successful transfer.

On this page