Getting Started
Everything you need to set up your Zenvault developer account and start building premium fintech-telecom experiences.
Overview link
Zenvault provides a unified set of APIs for global fintech and telecom infrastructure. Whether you are building a payment gateway, a mobile recharge portal, or a subscription management platform, our APIs offer the reliability and speed your users expect.
Authentication
Learn how to securely authenticate your API requests using OAuth 2.0 or API Keys.
Interactive API
Test endpoints directly from our documentation using our live sandbox environment.
Installation
Get started by installing the Zenvault SDK for your preferred language. We currently support Node.js, Python, Ruby, and Go.
# Install via NPM
npm install @zenvault/sdk-core
# Install via Yarn
yarn add @zenvault/sdk-core
Your First Request
Initialize the client and make your first call to the balance endpoint to verify your API connection.
const Zenvault = require('@zenvault/sdk-core');
const client = new Zenvault.Client({
apiKey: 'zv_live_4901_a9dk2'
});
async function checkWallet() {
const balance = await client.wallets.retrieve();
console.log(balance);
}