RMO Developers

Build on the RMO Payments Network

A single REST API at api.rmous.org for card authorizations, payment-code redemptions, captures, reversals, and webhooks. Test and production share the same base URL — the API key prefix selects the mode.

Quickstart → Get Test Credentials →
What You Can Build

From a single API key to a live transaction in minutes.

The same surface that powers RMO Debit, RMO Credit, RMOPay™, and QuickPay is available to processors and merchants. Authorize, capture, refund, and listen for events — just like Stripe, but on the RMO closed-loop network.

Test & Live

One base URL. Two modes. Distinguished by key prefix.

Test mode

Use pk_test_* keys. Hits the same api.rmous.org. Sandbox tenant pre-configured for anyone to play with.

  • Test-mode authorizations never settle to a real account.
  • 10 req/sec, 100,000 requests/day rate limit.
  • Shared sandbox — don’t put real customer data through it.
Test credentials →

Live mode

Use pk_live_* keys. Real money. Real settlement. Real obligations.

  • Each tenant gets dedicated keys, rate limit, and webhook secret.
  • Contact [email protected] to provision.
  • Optional: HMAC request signing + IP allowlist per tenant.
Request live access →
30-Second Quickstart

Your first request.

Copy the test credentials, then run this curl. You should get back a 200 OK with your tenant identity.

# Verify your test credentials.
curl https://api.rmous.org/v1/me \
  -H "X-API-Key: pk_test_publicsandbox_2026" \
  -H "Authorization: Bearer sk_test_publicsandbox_2026_anyone_can_use_this"
Full quickstart guide →