Skip to Content
DocsAPI ReferenceExample Server Setup

Example Server Integration Guide

Overview

This guide helps you set up a backend server using our example code to integrate with KryptoGO payment APIs. This approach is ideal if you don’t already have your own server infrastructure or want a quick way to get started.

Before proceeding, make sure you have obtained your API key from KryptoGO Studio. If you haven’t done this yet, please refer to the Getting Started Guide.

Integration Workflow

  1. Create Backend Server - Set up a secure backend using our example code
  2. Configure Environment - Secure your API key using environment variables
  3. Implement API Endpoints - Use the pre-configured endpoints that communicate with KryptoGO services
  4. Test & Deploy - Test your implementation and deploy your server

Prerequisites

⚠️

Before setting up your server, you need:

  1. Node.js installed on your development machine
  2. Basic knowledge of Express.js framework
  3. Your API key from KryptoGO Studio

Creating a New Express.js Project

You can quickly set up a backend server using Express.js to securely communicate with KryptoGO APIs. Here’s how to create a new project:

# Create a new project using the KryptoGO Express template npx create-kg-express-test my-app cd my-app # Copy example environment file and update with your credentials cp .env.example .env # Install dependencies npm install # Start the server npm start

The npx template comes with pre-configured endpoints for KryptoGO API integration:

  • GET /api/payment/intents - Get all payment intents
  • POST /api/payment/intent - Create a payment intent
  • GET /api/payment/intent/:id - Get a specific payment intent
  • POST /api/asset_pro/transfer - Transfer assets or withdraw funds to external wallets

You can run tests with npm test or pnpm test

Configuring Environment Variables

Create a .env file in your project root directory to store your API key:

STUDIO_API_KEY=your_kryptogo_api_key_here CLIENT_ID=your_client_id_here ORIGIN=your_domain_here
⚠️

Make sure to add .env to your .gitignore file to prevent accidental exposure of your API key in version control.

Running Your Server

With your server implemented, you can now run it:

npm start

Testing Your Implementation

You can test your implementation using tools like Postman or cURL:

# Test health check endpoint curl http://localhost:3001/ # List all payment intents curl -H "X-STUDIO-API-KEY: YOUR_API_KEY" \ -H "X-Client-ID: YOUR_CLIENT_ID" \ -H "Origin: YOUR_DOMAIN" \ http://localhost:3001/api/payment/intents # Create a new payment intent curl -X POST \ -H "Content-Type: application/json" \ -H "X-STUDIO-API-KEY: YOUR_API_KEY" \ -H "X-Client-ID: YOUR_CLIENT_ID" \ -H "Origin: YOUR_DOMAIN" \ -d '{"fiat_amount":"100.0","fiat_currency":"TWD","callback_url":"https://your-domain.com/webhook","order_data":{"order_id":"123"}}' \ http://localhost:3001/api/payment/intent # Get a specific payment intent curl -H "X-STUDIO-API-KEY: YOUR_API_KEY" \ -H "X-Client-ID: YOUR_CLIENT_ID" \ -H "Origin: YOUR_DOMAIN" \ http://localhost:3001/api/payment/intent/your_payment_intent_id # Withdraw funds to external wallet curl -X POST \ -H "Content-Type: application/json" \ -H "X-STUDIO-API-KEY: YOUR_API_KEY" \ http://localhost:3001/api/asset_pro/transfer \ -d '{ "chain_id": "arb", "contract_address": "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8", "amount": "0.01", "wallet_address": "your_address" }'

Production Considerations

When deploying your backend to production:

  1. Environment Variables: Ensure your API key is securely stored in environment variables
  2. HTTPS: Use HTTPS for all communications
  3. Rate Limiting: Implement rate limiting to prevent abuse
  4. Error Handling: Enhance error handling for better debugging
  5. Monitoring: Add monitoring and logging for production use
  6. Authentication: Add proper authentication for your API endpoints

For production environments, consider using a service like Heroku, AWS, or Vercel that provides secure environment variable management.

Next Steps

After setting up your backend server:

  1. Implement Frontend Integration: Connect your frontend application to your new API endpoints
  2. Add Error Handling: Enhance error handling and user feedback
  3. Implement Webhooks: Set up callback URLs for payment status updates
  4. Test Thoroughly: Test all endpoints with various scenarios
  5. Monitor Performance: Implement logging and monitoring

For detailed API documentation, please refer to our API Reference.