SDKs in the languages you already use
JavaScript, Python, Curl. Drop in, configure once, go live.
JavaScript, Python, Curl. Drop in, configure once, go live.
Payments, wallets, virtual accounts, payouts, all accessible from a single integration.
Sandbox environment, full test coverage, and clear docs from day one.
How It Works
Install the SDK
A single command. Works with Node, Python, or any REST client. No complex setup.
Authenticate with your API key
Your key is generated instantly from the dashboard. Sandbox and production keys are separate and clearly labelled.
Call the endpoint & ship feature
Initiate transfers, check balances, create virtual accounts, all through the same consistent API structure.
// 1. Install npm install syka-sdkimport syka from "syka-sdk";// 2. Authenticate with Syka()const client = new Syka({apiKey: "sk_live••••••••••••"});// 3. Create a cross-border paymentconst payment = await client.payments.create({amount: 12000,currency: "USD",recipient: "cus_guangzhou_01",description: "supplier invoice #4812"});