Accept BimBank payments with one API.

Moosyl is the BimBank API for developers: create a payment, your customer pays in BimBank, and your system is notified the moment it’s paid.

BimBank

How BimBank payments work with Moosyl.

  1. Create a payment

    Your server creates a checkout session or payment request through the Moosyl API.

  2. Your customer pays in BimBank

    They choose BimBank at checkout and confirm the payment in the app they already use.

  3. You’re notified instantly

    Moosyl sends a signed payment-updated webhook the moment the payment is completed.

A few lines of code.

The same call accepts BimBank and every other supported bank app.

checkout.ts
1import { Moosyl } from "moosyl-sdk";
2
3const moosyl = new Moosyl(process.env.MOOSYL_SECRET_KEY!);
4
5const session = await moosyl.createCheckoutSession({
6 transactionId: "txn_123",
7 amount: 5000,
8 successUrl: "https://example.com/success",
9 cancelUrl: "https://example.com/cancel",
10});

One integration, every bank app.

Your BimBank integration also accepts:

BimBank API questions

Can I accept BimBank payments through an API?
Yes. With Moosyl you create a payment through our API, your customer pays in BimBank, and you receive a webhook when it’s completed.
Do I need a separate integration for each bank app?
No. One Moosyl integration covers BimBank and every other supported bank app: Bankily, Sedad, Masrvi, BimBank, BCI Pay, Amanty and Click.
How much does it cost to accept BimBank payments?
1% per successful payment. No monthly fees, no setup costs, and failed payments are free.
Can I test BimBank payments before going live?
Yes. The sandbox is free: use test API keys and test phone numbers to simulate every payment outcome.

Ready to get started?

Create an account in minutes and test for free in the sandbox — or book a call and we’ll set it up with you.

  • See what you’ll pay

    1% per successful payment. No monthly fees.

    Pricing details
  • Start building

    SDKs, webhooks and guides to go live.

    Read the docs
BimBank API — Accept BimBank payments | Moosyl