Alfardan Exchange Send Money — API integration & OpenFinance services

Authorized protocol analysis and production-ready APIs for Qatar remittance, FX, and gold-order data flows

From $300 · Pay-per-call available
OpenData · OpenFinance · Qatar Central Bank · Remittance API

Connect Alfardan Exchange Send Money to your reconciliation, ERP, and treasury stack

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.

Remittance & statement APIs — programmatic access to outbound transfers (corridor, beneficiary, status), with paging, date ranges, and ISO 4217 currency filters; export to JSON, CSV, or PAIN.001-style payload.
FX rate & corridor feed — live QAR / AED / USD / EUR / INR / PHP / GBP buy-sell quotes mirrored from the in-app rate board, suitable for treasury dashboards and rate-aggregation engines.
Gold & bullion order pipeline — order events for Swiss PAMP and Royal Mint gold bars/coins, including weight, purity, delivery slot, and settlement state for inventory and accounting sync.

Feature modules

Send Money & remittance API

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.

Beneficiary directory sync

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.

FX rate & multi-currency cash

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.

Gold bars & coins order API

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.

Statement export & audit log

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.

Webhook event bus

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.

Data available for integration

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 typeIn-app sourceGranularityTypical downstream use
Outbound remittanceSend Money screenPer transfer (amount, corridor, beneficiary, status, fee, FX rate)Reconciliation, AML monitoring, ERP payout sync
Beneficiary bookBeneficiary listPer record (bank, IBAN, mobile wallet, KYC ref)CRM hydration, supplier directory sync
FX rate boardBuy / Sell currency screenPer currency pair, refreshed minutesTreasury rate aggregation, travel-tech pricing
FX cash orderBuy Foreign Currency screenPer order (currency, amount, delivery slot)Travel itinerary apps, expense pre-funding
Gold & coin orderGold Bars & Coins screenPer item (weight, purity, brand, price)Bullion inventory, wealth dashboards
Statement / receiptStatement / WhatsApp receiptDaily, monthly, custom rangeAccounting export, tax filing, audit trails
KYC & profileProfile / VerificationPer user (Qatar ID, residency, occupation, risk score)Onboarding reuse, regulated re-verification
Loyalty / AviosQatar Airways Privilege Club tilePer accrual eventLoyalty CRM, points reconciliation

Typical integration scenarios

1. Payroll & payout for GCC employers

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.

2. Accounting & ERP reconciliation

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.

3. Treasury FX dashboard

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.

4. Gold inventory & wealth advisory

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.

5. Compliance, AML, and audit pull

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.

Technical implementation

Auth: OAuth-style token exchange

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"
}

Statement query (paged, ISO 8601)

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
  }]
}

Webhook: transfer settled

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.

Error model & rate limits

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.

Compliance & privacy

Qatar Central Bank (QCB) alignment

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.

Privacy & data minimization

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.

Data flow / architecture

A typical deployment uses a four-stage pipeline:

  1. Client app / authorized session — user logs in to the Alfardan Exchange Send Money app; the integration session is scoped through a one-time OTP and device-fingerprint binding.
  2. Ingestion / API gateway — our middleware terminates TLS 1.3, attaches the customer API key, runs schema validation, and enforces rate limits.
  3. Storage & normalization — events land in a typed event store; a normalization layer maps raw fields (corridor, FX rate, beneficiary IDs) to a stable OpenFinance-style schema.
  4. Egress (API + webhook) — consumers either pull via GET /statement//transfer or subscribe to a webhook stream; an offline parquet export is available for analytical workloads.

Market positioning & user profile

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.

App screenshots

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.

Alfardan Exchange Send Money screenshot 1 Alfardan Exchange Send Money screenshot 2 Alfardan Exchange Send Money screenshot 3 Alfardan Exchange Send Money screenshot 4 Alfardan Exchange Send Money screenshot 5 Alfardan Exchange Send Money screenshot 6 Alfardan Exchange Send Money screenshot 7 Alfardan Exchange Send Money screenshot 8 Alfardan Exchange Send Money screenshot 9 Alfardan Exchange Send Money screenshot 10

Similar apps & integration landscape

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.

AlfaPay (Al Fardan Exchange UAE)

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.

Al Ansari Exchange

Long-established UAE exchange brand with 260+ branches; users frequently consolidate Al Ansari and Alfardan transaction history into a single GCC remittance dashboard.

Lulu Money

GCC-wide remittance app from Lulu Financial Holdings; common pairing for users moving between Qatar, UAE, and Oman, where unified beneficiary directories matter.

Western Union

Global agent network with mobile and online channels; integration typically focuses on cross-corridor reconciliation and unifying receipt records.

MoneyGram

Bank-deposit, mobile-wallet, and cash-pickup options; a frequent secondary corridor used alongside Alfardan for backup payout or differing destination rails.

Wise (formerly TransferWise)

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.

Xe Money Transfer

Live currency rates and 130+ currency coverage; often used alongside Alfardan's rate board for FX comparison and historical rate audits.

Revolut

Multi-currency account, cards, and FX; common in expat wallets, frequently reconciled against Alfardan transfers for monthly personal accounting.

Xoom by PayPal

Bank, wallet, and cash-pickup remittance with PayPal funding; users often want side-by-side reporting against Alfardan corridor outputs.

Careem Pay

Wallet, P2P, and remittance inside the Careem ecosystem; typical use case is cross-app payee verification and unified loyalty tracking.

Al Dar Exchange

Qatar-based exchange and remittance brand; relevant for local-only multi-house consolidation and FX-rate benchmark work.

stc pay

GCC mobile wallet originating from Saudi Arabia; integration use cases include cross-border wallet top-ups and remittance settlement matching.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger specification covering login, statement, transfer, FX, and gold endpoints
  • Authorization and protocol report (token chain, OTP/SCA flow, device-binding)
  • Runnable source code (Python / Node.js / Go) for login, statement export, and webhook receiver
  • Postman collection, integration tests, and a sandbox harness that mocks Alfardan responses
  • Compliance pack: QCB, AML/CFT, e-KYC, GDPR mapping notes, and consent record templates

Engagement workflow

  1. Scope confirmation — agree which data surfaces (remittance, FX, gold, statement) are in scope.
  2. Authorized protocol analysis & API design (2–5 business days).
  3. Build and internal validation (3–8 business days).
  4. Documentation, samples, and test cases (1–2 business days).
  5. First delivery typically lands in 5–15 business days; longer for multi-corridor or production rollouts.

About the studio

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.

  • Remittance, exchange-house, and digital-banking integration
  • Authorized data-extraction and protocol-analysis engagements
  • Custom Python / Node.js / Go SDKs and test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance
  • Source code delivery from $300 — receive runnable API source code and full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted endpoints and pay only per call, no upfront cost; suited to teams that prefer usage-based pricing

Contact

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.

Open contact page

We work under explicit customer authorization and documented public/authorized APIs only. NDAs available on request.

FAQ

What inputs do you need from us?

The target app name (Alfardan Exchange Send Money), your specific scope (e.g. statement export, transfer creation, FX feed, gold orders), and any sandbox or authorized credentials available on your side.

How long does delivery take?

Most first drops land in 5–12 business days; multi-corridor remittance flows or production rollouts with KYC re-verification can extend to 3–4 weeks.

How is compliance handled?

Authorized or documented endpoints only, with consent records, structured logging, data minimization defaults, and QCB/GDPR mapping notes included in the deliverable pack.

Can the API be hosted by you?

Yes — under the pay-per-call model we host the endpoints and bill per request; under the source-code model the customer self-hosts after delivery.

Recent context

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.

Original app overview (appendix — collapsed by default)

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:

  • Transfer money effortlessly — send funds quickly and securely from Qatar to a wide list of corridors, including South Asia, Southeast Asia, MENA, and East Africa, with the iPiD real-time payee-verification service launched in April 2025.
  • Purchase foreign currency — buy USD, EUR, GBP, INR, PHP and other currencies and have them delivered to the user's doorstep, instead of visiting a branch counter.
  • Purchase high-purity gold bars and coins — order Swiss-origin PAMP and The Royal Mint bullion in multiple weights (1g, 5g, 10g, 100g, 1oz, etc.) for home delivery, suitable for both gifting and investment.
  • Loyalty — collect Avios on eligible services through the Qatar Airways Privilege Club partnership announced in 2025.
  • Receipts & records — receive transaction receipts via WhatsApp or email and view a statement of past transactions inside the app.

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.