Broad API Coverage
Customers, wallets, transfers, virtual accounts, bills, FX, crypto, issuing, subscriptions, and supporting lookup endpoints are available through one SDK.
Type-safe, modern SDK for integrating Maplerad payments, collections, wallets, cards, and identity services into your Node.js applications.
pnpm add maplerad-sdknpm install maplerad-sdkyarn add maplerad-sdkimport { createClient } from 'maplerad-sdk';
const sdk = createClient({
environment: 'sandbox',
clientSecret: process.env.MAPLERAD_CLIENT_SECRET!,
});
const wallets = await sdk.api.wallets.list();This SDK is designed for teams that want a direct, typed integration with the Maplerad API:
sdk.api.* surface across product areascreateClient() helper for quickly bootstrapping the SDK.Core class if you prefer explicit instances.sdk.api.*.Schema.Use the guide to get configured, then move to the API section when you need namespace-level behavior and endpoint context.