Authorized protocol analysis and production-ready APIs for Qatar remittance, FX, and gold-order data flows
The Alfardan Exchange Send Money app (com.synergates.alfardanapp.prod) is the digital channel of Alfardan Exchange — a Qatar-licensed exchange house with more than 50 years in the GCC market and the recipient of the "Best Money Transfer Qatar 2025" award. We deliver authorized protocol analysis and OpenFinance-style APIs that surface the structured data inside the app: outbound remittances, beneficiary lists, FX rate feeds, gold-bar orders, and statement history.
Wraps the in-app "Send Money" flow as a clean REST endpoint: create transfer, attach beneficiary, run iPiD payee verification, debit source wallet, return reference. Fields include corridor (e.g. QAR→INR), purpose code, and AML flag. Use it to embed Qatar-originating remittance in payroll, expense, or marketplace payout systems.
Pull saved beneficiaries with bank, IBAN/account, mobile wallet, and KYC reference. The webhook stream pushes diffs (added, edited, deactivated) to keep CRM and ERP records in lockstep with what the user maintains inside the app.
Read currently displayed buy-sell rates per corridor; place an order for foreign currency cash delivery (USD, EUR, GBP, INR, PHP, etc.). Designed for travel-tech aggregators and corporate treasury that need the same numbers shown in-app to back-end pricing.
Surface high-purity (24K) bullion inventory: weight (1g, 5g, 10g, 100g, 1oz), origin (PAMP, The Royal Mint), unit price, settlement, and delivery slot. Use for jewellery retail, wealth-management dashboards, or commodity-tracking spreadsheets that want one source of order truth.
Date-ranged exports of remittance, FX, and gold transactions with pagination and signed receipt URLs. Statement output mirrors the WhatsApp/email receipt format the app already emits, so external accounting tools can match line items 1:1.
Push events: transfer.completed, transfer.failed, fx.rate.updated, gold.order.shipped, kyc.updated, avios.earned. Used by reconciliation engines that prefer event-driven architecture over polling.
The Alfardan Exchange Send Money app holds structured server-side data that is naturally exposed in OpenData / OpenFinance terms. The table below maps each data type to its in-app source, granularity, and a typical downstream use a customer can build on top.
| Data type | In-app source | Granularity | Typical downstream use |
|---|---|---|---|
| Outbound remittance | Send Money screen | Per transfer (amount, corridor, beneficiary, status, fee, FX rate) | Reconciliation, AML monitoring, ERP payout sync |
| Beneficiary book | Beneficiary list | Per record (bank, IBAN, mobile wallet, KYC ref) | CRM hydration, supplier directory sync |
| FX rate board | Buy / Sell currency screen | Per currency pair, refreshed minutes | Treasury rate aggregation, travel-tech pricing |
| FX cash order | Buy Foreign Currency screen | Per order (currency, amount, delivery slot) | Travel itinerary apps, expense pre-funding |
| Gold & coin order | Gold Bars & Coins screen | Per item (weight, purity, brand, price) | Bullion inventory, wealth dashboards |
| Statement / receipt | Statement / WhatsApp receipt | Daily, monthly, custom range | Accounting export, tax filing, audit trails |
| KYC & profile | Profile / Verification | Per user (Qatar ID, residency, occupation, risk score) | Onboarding reuse, regulated re-verification |
| Loyalty / Avios | Qatar Airways Privilege Club tile | Per accrual event | Loyalty CRM, points reconciliation |
A construction or hospitality employer in Qatar wants to pay 800 expat workers in INR, PHP, NPR, and BDT. We wrap POST /v1/transfer as a bulk endpoint, run iPiD payee verification on every beneficiary, and stream transfer.completed events into the HR system. Payslips reference the same transaction ID the worker sees in the app.
An SME using Zoho Books or QuickBooks needs every Alfardan transaction tagged to a vendor and cost centre. We expose GET /v1/statement with a normalized schema (txn_id, posted_at, type, currency, amount, fee, fx_rate, beneficiary_id) and a daily reconciliation report that flags orphaned receipts.
A regional treasury team blends Alfardan's corridor rates with bank quotes for QAR/USD/EUR/GBP. The FX feed is polled every 60 seconds; rate snapshots feed a Grafana board, and a webhook on rate moves above N basis points triggers a Slack alert. Nothing here requires changes to the consumer app.
An independent wealth advisor tracks PAMP and Royal Mint bullion holdings across clients. Each gold-order webhook (gold.order.shipped) updates a portfolio system with weight, purity, and a unit cost basis, so quarterly statements include the bullion line on the client's overall asset view.
An internal audit team pulls signed daily statements, KYC change events, and payee-verification outcomes into a SIEM. The pull job uses an OAuth-style refresh token, retains every response under WORM storage, and feeds the QCB-aligned monthly AML/CFT report.
POST /api/v1/alfardan/auth/login
Content-Type: application/json
{
"msisdn": "+9745xxxxxxx",
"qid": "QID-XXXXXXXXXXX",
"device_fp": "a1b2c3...",
"otp": "123456"
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_a8f9...",
"expires_in": 1800,
"scope": "remittance.read transfer.write fx.read gold.read"
}
GET /api/v1/alfardan/statement?from=2026-01-01&to=2026-03-31&type=remittance&page=1
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"page": 1,
"page_size": 50,
"total": 287,
"items": [{
"txn_id": "AFE-2026-000182",
"posted_at": "2026-03-12T08:14:09Z",
"type": "remittance",
"corridor": "QAR-INR",
"amount_src": 1500.00,
"currency_src": "QAR",
"amount_dst": 33810.00,
"currency_dst": "INR",
"fx_rate": 22.54,
"fee": 15.00,
"beneficiary_id": "BEN-9981",
"status": "settled",
"ipid_verified": true
}]
}
POST https://your-app.example.com/hooks/alfardan
X-Alfardan-Signature: t=1761500000, v1=hex(hmac_sha256...)
{
"event": "transfer.completed",
"occurred_at": "2026-04-21T11:02:14Z",
"data": {
"txn_id": "AFE-2026-000201",
"corridor": "QAR-PHP",
"amount_src": 800.00,
"fx_rate": 12.41,
"settlement_rail": "instaPay",
"ipid_verified": true
}
}
// Verify HMAC, ack with 2xx within 5s,
// retry policy: 0/30s/2m/10m/1h, 6 attempts.
Standard error envelope: { "error": { "code": "TRANSFER_LIMIT_EXCEEDED", "message": "...", "trace_id": "..." } }. Per-token rate limits are 60 req/min for read, 10 req/min for write. 429 includes Retry-After. Idempotency keys are required for any POST /transfer to prevent duplicate debits during network retry.
Alfardan Exchange operates under a QCB exchange-house licence, with obligations covering AML/CFT, e-KYC (per the 2023 QCB e-KYC regulation), and the 2024 Payment Services Regulation. Our integrations are scoped to read endpoints under explicit user authorization, with logging, consent records, and Strong Customer Authentication (SCA) at every transfer step. Sensitive identifiers (Qatar ID, IBAN) are tokenized at rest.
We collect only fields the customer explicitly asks for in their integration scope and apply field-level redaction by default. Data retention defaults to 90 days for transactional records and 24 hours for OAuth refresh material; both are overridable per contract. Cross-border data flows align with Qatar's data-protection law and, where the consumer is in scope, GDPR Article 6 lawful-basis selection.
A typical deployment uses a four-stage pipeline:
GET /statement//transfer or subscribe to a webhook stream; an offline parquet export is available for analytical workloads.The Alfardan Exchange Send Money app primarily serves expatriate workers and professionals based in Qatar, alongside Qatari nationals using the FX-cash and gold-bullion features. The expat user base routes remittances mainly to South Asia (India, Pakistan, Nepal, Bangladesh, Sri Lanka), Southeast Asia (Philippines, Indonesia), and parts of MENA and East Africa. Local Qatari users skew toward gold orders and multi-currency travel-card top-ups. The app is available on Android (Google Play) and iOS (App Store, Qatar storefront), with branch-network fallback across Qatar. In market terms, it sits inside the GCC's USD 3.2B digital-remittance segment, where 67% of users now prefer app-based transfers over branch counters.
Click any thumbnail to view the full-resolution screenshot. The visuals below illustrate the data surfaces we integrate against — Send Money, FX rates, gold orders, statement, and beneficiary management.
Customers integrating Alfardan Exchange Send Money often deal with related remittance, exchange, or wallet apps. The list below maps the broader integration landscape — each of these apps is a frequent counterpart in cross-app transaction exports, payee directory consolidation, and FX comparison work.
The UAE sister app; many corporate clients run unified statement exports across both Qatar and UAE entities of the Al Fardan group, using a single ledger view.
Long-established UAE exchange brand with 260+ branches; users frequently consolidate Al Ansari and Alfardan transaction history into a single GCC remittance dashboard.
GCC-wide remittance app from Lulu Financial Holdings; common pairing for users moving between Qatar, UAE, and Oman, where unified beneficiary directories matter.
Global agent network with mobile and online channels; integration typically focuses on cross-corridor reconciliation and unifying receipt records.
Bank-deposit, mobile-wallet, and cash-pickup options; a frequent secondary corridor used alongside Alfardan for backup payout or differing destination rails.
Mid-market FX with multi-currency accounts; pairs well with Alfardan when users want a unified view of branch-originated GCC transfers and Wise online transfers.
Live currency rates and 130+ currency coverage; often used alongside Alfardan's rate board for FX comparison and historical rate audits.
Multi-currency account, cards, and FX; common in expat wallets, frequently reconciled against Alfardan transfers for monthly personal accounting.
Bank, wallet, and cash-pickup remittance with PayPal funding; users often want side-by-side reporting against Alfardan corridor outputs.
Wallet, P2P, and remittance inside the Careem ecosystem; typical use case is cross-app payee verification and unified loyalty tracking.
Qatar-based exchange and remittance brand; relevant for local-only multi-house consolidation and FX-rate benchmark work.
GCC mobile wallet originating from Saudi Arabia; integration use cases include cross-border wallet top-ups and remittance settlement matching.
We are an independent technical studio focused on App interface integration and authorized API integration. The team has years of hands-on experience in mobile fintech, exchange-house back-office systems, and OpenBanking-style protocols, with delivered work covering remittance, payments, gold-bullion ordering, and treasury data feeds across the GCC and beyond. We know the QCB, SAMA, CBUAE, and CBE regulatory environments and ship integrations that respect them.
For quotes, sandbox access, or to brief us on your target app and requirements, open the contact page below. Typical first response within one business day.
We work under explicit customer authorization and documented public/authorized APIs only. NDAs available on request.
What inputs do you need from us?
How long does delivery take?
How is compliance handled?
Can the API be hosted by you?
In April 2025 Alfardan Exchange partnered with iPiD to launch Qatar's first real-time payee-verification service inside the exchange industry — a fact our integrations now mirror via an ipid_verified flag on every transfer object. Alfardan also won the "Best Money Transfer Qatar 2025" award from Global Banking & Finance Review and announced a Qatar Airways Privilege Club partnership in June 2025, which surfaces an Avios-accrual event we track in the webhook stream.
Alfardan Exchange Send Money (package com.synergates.alfardanapp.prod) is the official mobile app of Alfardan Exchange, a Qatar-licensed exchange house with more than 50 years of presence in the GCC and a recognized name in the local money-transfer, FX, and bullion markets.
The app is positioned as an all-in-one digital channel for personal financial transactions. With a few taps, users can:
Alfardan Exchange operates under the Qatar Central Bank's exchange-house licensing framework, follows AML/CFT and e-KYC instructions issued by the QCB, and was awarded "Best Money Transfer Qatar 2025" by Global Banking & Finance Review magazine. The brand is widely associated with the digital exchange experience in Qatar and is available on both Google Play and the iOS App Store (Qatar and other GCC storefronts).
This page positions independent technical-integration services that work with the app under explicit customer authorization. It is not affiliated with, endorsed by, or representing Alfardan Exchange or its parent group.