FOMO Pay
Commercialby FOMO Pay Pte Ltd
Singapore MAS-licensed major payment institution providing a banking-grade API for accounts, balances, virtual accounts, beneficiaries, outgoing transfers and transaction data. Known in SG for QR payment acceptance (PayNow/SGQR) and digital-currency-to-fiat settlement rails for merchants.
How to authenticate
- 1Complete FOMO Pay merchant onboarding; generate an RSA key pair (openssl genrsa -out key.pem 2048) and share only the PEM public key with FOMO.
- 2After onboarding you receive a CustomerID used as the credential in the authorization header.
- 3On each request set headers: host, content-type, x-fomo-date (RFC-3339 Zulu), x-fomo-nonce (16-256 hex chars), x-fomo-content-sha256 (SHA256 of body), x-fomo-api-version.
- 4Build the CanonicalRequest (verb, URI, sorted query string, canonical headers, signed headers, hashed payload) and the StringToSign (FOMO1-RSA-SHA256 + timestamp + nonce + SHA256 of CanonicalRequest).
- 5Sign with your private key (RSA-SHA256, hex) and send 'authorization: FOMO1-RSA-SHA256 Credential=<CustomerID>,SignedHeaders=...,Signature=<hex signature>'.
Example request
curl 'https://uat.fomoapis.com/v1/transactions?balance_id=2b09efb6-f7b7-4739-96dc-5536ea6444f3' -H 'x-fomo-date: 2025-02-24T07:09:57.589Z' -H 'x-fomo-nonce: 421ae34f7c4ca51050253fd22ac2b23e' -H 'x-fomo-content-sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855' -H 'x-fomo-api-version: v20250212' -H 'authorization: FOMO1-RSA-SHA256 Credential=<CustomerID>,SignedHeaders=content-type;host;x-fomo-api-version;x-fomo-content-sha256;x-fomo-date;x-fomo-nonce,Signature=<hex>'Notes for AI agents
No self-serve signup: you must onboard commercially and exchange RSA public keys before getting a CustomerID, and even FOMO cannot forge requests (private-key signing, AWS-SigV4-style canonical request). Docs examples use the UAT host uat.fomoapis.com; production host is provided at onboarding. Zero-downtime key rotation is supported by registering a second public key.
Machine-readable version: /api/apis/fomo-pay
Related APIs
2C2P Payment Platform API
2C2P
Southeast Asia payments processor headquartered in Singapore, covering cards, QR payments and 250+ local payment methods across the region. Suited to merchants selling into multiple SEA markets.
Adyen
Adyen N.V.
Enterprise payments platform with a single Checkout API for cards and local payment methods. In Singapore it supports PayNow (SGD, SG only) with real-time payments, QR code integration, refunds, partial refunds and separate captures via the standard /payments endpoint with paymentMethod.type set to paynow.
Airwallex API
Airwallex
Global business accounts, multi-currency wallets, payouts, cards and payment acceptance with strong Singapore entity support. Common choice for SG companies paying overseas suppliers or holding multi-currency balances.
HitPay API
HitPay
Singapore-born payment gateway popular with SMEs: one API for PayNow QR, cards, GrabPay, ShopeePay and more, with no monthly fees. Simple payment-request model that is easier than Stripe for basic use cases.