API Overview & Quick Start
Welcome to the Servinux Developer Portal. Our V2 APIs are designed to be predictable, RESTful, and easy to integrate. Whether you are building a checkout experience, managing virtual accounts, or automating payouts, this guide will get you up and running in minutes.
Obtain your API Keys
Log in to your Merchant Dashboard and navigate to Settings > API Keys. You will find two sets of keys:
-
Test KeysUsed for integration and testing (Sandbox). Starts withsk_test_ -
Live KeysUsed for real-money transactions. Starts withsk_live_
Verify Authentication
Servinux V2 uses Bearer Token authentication. All requests must be sent over HTTPS.
Try a simple get_banks request to verify your keys are working.
curl -X GET https://merchant.servinux.com/v2/get_banks \
-H "Authorization: Bearer YOUR_SECRET_KEY" \
-H "Content-Type: application/json"
Explore the Endpoints
Use the sidebar to explore specific guides for Checkout Modal, Virtual Accounts, and Payouts. Each guide contains code samples and response objects to help you build faster on the V2 architecture.