Skip to main content

What is RaaS Widgets?

RaaS Widgets is a multi-tenant platform that lets you offer cross-border money transfers through embeddable flows. As a partner, you call the Partner API once to create a magic link, share that URL with your user (browser, deep link, or native WebView), and receive webhooks as the journey progresses. M2M is one flow among several — not the product itself. Your account is configured with the flows you can mint (allowedFlows).

How it works

1

Create a magic link

Call POST /partner/links with a flow slug, your user’s referenceId, and any flow-specific config.
2

Share the link

Send the URL via email, SMS, push, in-app button, or load it in a native WebView.
3

User completes the flow

Your user opens the link and completes the experience in that flow’s widget (send, request, cash deposit, and more).
4

Receive notifications

Get signed webhook events for link activity, data requests, and related lifecycle updates.

Core concepts

A flow is a deployable widget experience (for example smart, m2m, request, fund-request). Each flow has its own host URL and config shape. Discover what you can mint with GET /partner/flows.
The referenceId is your stable identifier for an end user. Always reuse the same value so CIP status, history, and friction reduction carry across sessions.
RaaS Widgets sends signed outbound events to your webhook URL using X-RAAS-* signature headers — see Webhook Security. Operation statuses and terminal events are covered in Operation lifecycle.
An operation is the money-transfer record created when a user completes a flow. Track status (createdprocessingcompleted / failed / cancelled) via webhooks and GET /partner/operations.

Get started

Quick Start

Create your first magic link with the smart flow.

Authentication

API keys and request security.

Request API

Create request-money asks via /v1/request-money.

Flows catalog

Understand which flow fits your use case.

API Reference

Full Partner API documentation.

Environments

Never use production API keys in development. Use sandbox keys for all non-production work.
This documentation covers the Partner-accessible API (X-API-Key against /partner/*). The Widget API used by flow apps and the Superadmin API are out of scope.