Developers

Ship the integration today.

Type-safe SDKs, signed webhooks, and a sandbox that mirrors production — minus the moving money part.

TypeScript SDK

@mobiska/client — typed responses, automatic retries, configurable timeouts and tree-shakeable helpers.

npm i @mobiska/client

Sandbox

A full mirror of production. Simulate charges, disbursements, failures and webhook replays end-to-end.

sandbox.mobiska.com

Webhooks

Signed callbacks for every state change. HMAC-SHA256, automatic retries with exponential backoff.

x-mobiska-signature
Quickstart

From npm install to your first payment in three steps.

The SDK ships with sensible defaults, exhaustive types, and idempotency keys baked in. You write the business logic.

  1. 01
    Install the SDK

    Add @mobiska/client to your project. Works with Node 18+, Deno, Bun and edge runtimes.

  2. 02
    Authenticate

    Drop in your test secret key. Sandbox keys are scoped, revocable and safe to commit to a .env.

  3. 03
    Charge your first cedi

    Call payments.create with an amount, currency and method. Listen for the webhook. Ship.

charge.ts
import { Mobiska } from "@mobiska/client";

const mobiska = new Mobiska(process.env.MOBISKA_SECRET!);

const payment = await mobiska.payments.create({
  amount: 5000,            // GHS 50.00, minor units
  currency: "GHS",
  method: "mobile_money",
  channel: "mtn",
  msisdn: "+233244000000",
  reference: "order_8421",
  idempotencyKey: crypto.randomUUID(),
});

// → { id: "pay_01H...", status: "pending", ... }
// Listen for the signed webhook: payment.succeeded
Idempotent
Safe to retry every request
Typed
Autocomplete every field, everywhere
Observable
Request IDs on every response
Use any stack

First-class SDKs, with a clean REST fallback.

We maintain official libraries for the runtimes our customers actually deploy on, plus an OpenAPI spec for everything else.

TypeScriptJavaScriptPythonPHPGoRubyJavacURL
Built to depend on

Production guarantees, not promises.

99.95%
API uptime, measured monthly
<150ms
p95 latency from EU & AF edge
24/7
On-call engineering response
PCI DSS
Level 1 certified infrastructure

Get keys. Start charging in sandbox today.

No sales call required. Production access unlocks after a short compliance review.