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.


1

Obtain your API Keys

Log in to your Merchant Dashboard and navigate to Settings > API Keys. You will find two sets of keys:

  • Test Keys Used for integration and testing (Sandbox). Starts with sk_test_
  • Live Keys Used for real-money transactions. Starts with sk_live_
2

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 / V2 Verification
curl -X GET https://merchant.servinux.com/v2/get_banks \
-H "Authorization: Bearer YOUR_SECRET_KEY" \
-H "Content-Type: application/json"
3

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.