Compliant protocol analysis and production-ready API endpoints for diaspora remittance, transaction export, and mobile-wallet payout reconciliation
Taptap Send moves funds from senders in the UK, US, EU, Canada, UAE, and Australia into 70+ corridors across Africa, Asia, and Latin America. Our integration work exposes that flow as machine-readable data — sender profiles, transaction status, FX rates, and payout receipts — so accounting platforms, CRMs, and compliance tools can consume it on the same schedule the app updates them.
Taptap Send launched as a low-margin, high-volume remittance app focused on diaspora corridors that were historically expensive — Senegal, Mali, Bangladesh, Cambodia, Haiti, and others. Because most transfers settle in minutes through partnerships with mobile-money operators, the app sits on a steady stream of small, high-frequency events that mainstream OpenBanking aggregators rarely cover. Surfacing those events through an API layer lets fintech back offices, payroll providers, and B2B paymasters reconcile without manual screenshot-and-paste.
In late 2024, Taptap Send rolled out a series of corridor expansions and partner promotions (including a December 2024 referral campaign across Nigeria, Ghana, and CFA-zone countries) and continued widening its EU/UAE send-side coverage through 2025. Each new corridor adds a different payout schema (mobile wallet ID, IBAN, bank account number, agent network code) — exactly the kind of fragmentation an integration layer is supposed to absorb.
OAuth-style token exchange that mirrors the in-app SMS OTP flow. Includes refresh-token handling, device fingerprint replay, and 2FA challenge interception. Used to power agent-side dashboards where one back-office user manages multiple sender profiles.
Read/write API for the recipient address book: phone number (mobile wallet), IBAN, bank account number, and KYC-tier metadata. Use this to deduplicate beneficiaries across remittance providers and prefill payout templates.
Returns the exact send amount, receive amount, applied exchange rate, and fee for any (source, destination, corridor) tuple. Snapshotted at quote creation so it can be used as a price-disclosure log under FCA and DFSA conduct rules.
Submit, track, and cancel a transfer with explicit status codes: QUOTED → FUNDED → IN_TRANSIT → DELIVERED → SETTLED. Each transition is timestamped so finance teams can attribute float and identify stuck transactions.
Date-bounded transaction history with paging, corridor filter, status filter, and recipient filter. Output as JSON for data warehouses, CSV/Excel for accountants, or PDF for end-user disclosure copies.
Stream KYC-uplift events, sanctioned-name hits, and threshold breaches into your AML case manager. Every payload is signed and tied back to the regulator-of-record (FCA, NBB, FinCEN, FINTRAC, DFSA) for the corridor it was issued in.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Sender profile | Account / KYC tab | Per user (name, ID document, residency, tier) | Onboarding sync, sanctions re-screening |
| Recipient list | Address book | Per beneficiary, with payout method | Beneficiary deduplication, payout prefill |
| Quote | Send-money flow, step 2 | Per attempted quote (FX, fee, expiry) | Treasury, price disclosure, A/B fee analysis |
| Transaction | History tab | Per transfer (corridor, amount, status, partner reference) | Reconciliation, dashboards, anti-fraud scoring |
| Payout receipt | Partner webhook (mobile wallet / bank / cash agent) | Per leg (settlement timestamp, payout reference) | SLA monitoring, partner scorecards |
| FX rate snapshot | Quote endpoint | Per corridor, per minute | Treasury hedging, margin reporting |
| Compliance event | Background AML pipeline | Per event (rule ID, severity, decision) | SAR drafting, regulator reporting |
An African-diaspora payroll service in the UK pays freelancers in Lagos and Accra through Taptap Send. The integration pulls daily transaction history via the statement export endpoint, joins it with the payroll ledger by external reference, and flags any transfer still in IN_TRANSIT after four hours. Maps to OpenBanking's "payment status" use case but covers mobile-wallet rails that PSD2 does not.
A Dubai-based SME uses Taptap Send for vendor payments to suppliers in Pakistan and Bangladesh. The integration posts each SETTLED transaction into Xero/QuickBooks as a foreign-currency expense, attaches the Taptap-issued PDF receipt, and books FX gain/loss against the snapshotted quote rate. Consumes the transaction, payout-receipt, and FX-snapshot endpoints.
A money services business that resells Taptap Send for agent locations needs auditable evidence for FinCEN and FCA reviewers. The compliance-log feed streams KYC-uplift and threshold-breach events into the MSB's case manager; statement export covers the daily volume reports. Each event is signed with the regulator-of-record so a reviewer can trace any record back to its primary jurisdiction.
A fintech treasury team wants to monitor Taptap Send's published FX rate against the interbank mid-market in five-minute intervals across the GBP→NGN, EUR→XOF, CAD→PHP, and AED→PKR corridors. The integration pulls the quote endpoint on a schedule, stores rates in a time-series database, and overlays them with the transaction-volume series for margin attribution.
A support team handling sender escalations needs to look up a transfer by partial reference. The integration exposes a single read endpoint that combines sender profile, transaction status, and the latest payout-receipt webhook into a single JSON payload for their helpdesk view, removing the need to log into the app on a personal device.
POST /api/v1/taptap/auth/login
Content-Type: application/json
{
"phone_e164": "+447700900123",
"device_id": "a8f3c2-...",
"client_app": "com.taptapsend"
}
200 OK
{
"challenge_id": "ch_8f2d1a",
"expires_in": 180,
"next_step": "submit_otp"
}
POST /api/v1/taptap/auth/otp
{ "challenge_id":"ch_8f2d1a", "code":"483921" }
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_4f1c...",
"expires_in": 3600,
"sender_id": "snd_01HV9..."
}
POST /api/v1/taptap/statement
Authorization: Bearer <ACCESS_TOKEN>
{
"sender_id": "snd_01HV9...",
"from_date": "2026-03-01",
"to_date": "2026-03-31",
"corridor": "GBP-NGN",
"status": ["SETTLED","DELIVERED"],
"page": 1,
"page_size": 100
}
200 OK
{
"page": 1, "total": 248,
"transfers": [
{
"transfer_id": "tx_01HVA...",
"created_at": "2026-03-04T11:22:01Z",
"send": {"currency":"GBP","amount":"100.00"},
"receive": {"currency":"NGN","amount":"203450.00"},
"fx_rate": "2034.50",
"fee": {"currency":"GBP","amount":"0.99"},
"payout": {"method":"mobile_wallet","partner":"OPAY","reference":"OP-99127"},
"status": "SETTLED",
"settled_at":"2026-03-04T11:22:48Z"
}
]
}
POST https://your-app.example.com/webhooks/taptap
X-TapTap-Signature: t=1711193880,v1=8c1f...
Content-Type: application/json
{
"event": "transfer.settled",
"transfer_id": "tx_01HVA...",
"corridor": "EUR-XOF",
"partner": "ORANGE_MONEY_SN",
"settled_at": "2026-03-22T08:31:20Z",
"regulator": "NBB"
}
# Verify signature with HMAC-SHA256(webhook_secret, t + "." + body)
# Reject if |now - t| > 300 seconds.
Taptap Send Payments Co. is registered with FinCEN (MSB number 31000306745734, NMLS ID 2108069), licensed by the New York DFS, and authorised in Massachusetts as a Foreign Transmittal Agency. In the UK it operates as an Electronic Money Institution under the FCA (firm reference 900842); in the EU through the National Bank of Belgium (NBB); in Canada through FINTRAC; and in the UAE through the DFSA.
Our integrations are designed to live inside that perimeter rather than outside it. PSD2 strong customer authentication is mirrored, GDPR data-minimisation is applied at the field level, and the compliance-log feed is structured so it can be replayed as evidence under the FCA's PSR 2017 conduct rules or the New York DFS Part 417 record-keeping requirements. Every endpoint accepts a customer-supplied retention window so PII can be expired on schedule.
A typical pipeline looks like:
Taptap Send's user base is heavily diaspora-led: first- and second-generation migrants sending small, frequent transfers home. The bulk of demand sits on the GBP→NGN, EUR→XOF, CAD→INR, USD→BDT, and AED→PKR corridors, with growing volume in Latin America (Mexico, Colombia, Brazil, Haiti). On the consumer side it is mobile-first (Android leads share in most receive markets, iOS leads in UK/US/UAE send markets); on the B2B side it has been picked up by African-diaspora payroll providers, MSBs, and small importers in the GCC. Integration buyers are usually back-office engineers at fintechs, payroll services, and cross-border vendors who already work with Open Banking aggregators on the bank-account side and need parity on the mobile-wallet side.
Tap any thumbnail to view it full size. Source: official Google Play listing for Taptap Send.
Teams that integrate Taptap Send rarely stop at one provider. The same back office usually has at least two or three remittance and FX rails in production. The names below appear most often alongside Taptap Send in our intake briefs — listed not for ranking but to map the broader ecosystem this integration plugs into.
We are an independent technical studio focused on App protocol analysis and authorized API integration. The team has shipped fintech integrations across remittance, neobanking, OpenBanking, and merchant acquiring, with engineers drawn from money-transfer operators, mobile-wallet platforms, and cloud security backgrounds.
For quotes, scoping, or to submit your target app and requirements, open our contact page.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Taptap Send: Money Transfer is an international remittance app built specifically for the diaspora. Senders in the UK, US, EU, Canada, UAE, and Australia can transfer money to family in over 70 countries across Africa, Asia, and Latin America. Most international money transfer transactions arrive in minutes, with delivery via mobile wallets (Orange Money, MTN, bKash, JazzCash), direct bank transfer, or cash pickup at trusted partner locations.
The product positioning is high-volume, low-margin: competitive mid-market exchange rates, transparent fees, and a focus on corridors that traditional banks underserve — Senegal, Mali, Guinea, Ghana, Cameroon, Côte d'Ivoire, Kenya, Madagascar, Zambia, Bangladesh, Vietnam, DR Congo, Morocco, Sri Lanka, Republic of Congo, Pakistan, Nepal, Ethiopia, Nigeria, Mozambique, Cambodia, Haiti, Tunisia, Uganda, Lebanon, Colombia, Guatemala, Philippines, Egypt, Mexico, India, Turkey, and Zimbabwe, with more launching.
Regulatory footprint: licensed by the New York DFS and registered with FinCEN in the United States, authorised by the FCA in the United Kingdom, regulated by the National Bank of Belgium in the European Union, by FINTRAC in Canada, and by the DFSA in the United Arab Emirates. State-of-the-art encryption protects every transfer.
How to start a first money transfer: download the Taptap Send app, select the destination country, enter the amount and recipient details, confirm the international money transfer, and watch it arrive. Support is available at support@taptapsend.com.