Developers coming soon

Build payment workflows with MascotBill APIs.

Create links, track transactions, and automate payment operations using SDKs, webhooks, and a developer console.

SDK preview

JavaScript and TypeScript tools for links, invoices, pre-auth, and transaction events.

import { MascotBill } from '@mascotbill/sdk';

const client = new MascotBill({
  apiKey: process.env.MASCOTBILL_API_KEY,
});

const link = await client.links.create({
  type: 'invoice',
  amount: 1250,
  currency: 'USD',
  description: 'Website design services',
});

Console demo

Test payments in sandbox and move to production with the same operational model.

mascotbill-console
$ mascotbill login --sandbox
Authenticated as dev@acme.com
$ mascotbill links create --type invoice --amount 1250 --currency USD
Link created: https://pay.mascotbill.com/invoice/INV-12A4
$ mascotbill transactions tail --limit 3
TXN-92A1 completed USD 1250.00
TXN-91FE authorized USD 50.00
TXN-91D9 completed USD 85.00

Secure tokens

Server-side key management and scoped access tokens.

Webhooks

Reliable event delivery for payment lifecycle automation.

Sandbox to live

Move from test mode to production with the same API surface.