Authorized protocol analysis, transfer-history exports, FX quote APIs, and webhook reconciliation for US outbound remittances to AU, CA, IN, JP, KR, MX, PH
Utransfer US is a FinCEN-registered money services business (Registration No. 31000246803608) and Korea FSS-recognised fintech that lets US senders move funds to Australia, Canada, India, Japan, Korea, Mexico, and the Philippines with no remittance fee. Transfers settle within 24 hours on average, with US→Mexico flows often delivered in under five minutes. Our team delivers authorized API integration, mobile protocol analysis, and ready-to-run source code so partner platforms can read transfer history, surface real-time FX quotes, and reconcile payouts automatically.
Utransfer US sits between US funding sources (ACH-pulled bank accounts, debit funding) and overseas payout rails in seven countries. That position means each transfer record carries unusually rich, end-to-end context: payer KYC anchors, FX execution prices, corridor-level fee structures, and downstream payout confirmations. For an integrator, this is the data backbone needed to power expense reports, family-remittance dashboards, AML monitoring, or aggregated multi-provider remittance views.
Because the app is FinCEN-registered, every record is generated under a regulated audit trail, which makes the resulting API surface attractive for accounting platforms and compliance vendors that need defensible, time-stamped transaction lineage rather than scraped UI text.
Mirror the mobile auth flow: phone-number / email login, OTP verification, device binding, and refresh-token rotation. We hand you a clean OAuth-style client that hides the raw mobile handshake and produces a stable access_token + refresh_token pair for backend use. Typical use: nightly batch ingestion service that holds a per-user token vault.
Read-only access to verified sender profile attributes — full name, address state (one of the 32 supported US states), document verification status, and limit tier. Use this to drive customer-tier logic, FinCEN CTR pre-screening, or duplicate-payer detection across sister fintech apps.
Server-to-server quote endpoint returning a corridor-specific locked rate, expiry, fee breakdown (zero remittance fee, FX spread component), and minimum/maximum amounts. Useful for comparison aggregators that surface Utransfer alongside Wise, Remitly, Xoom, WorldRemit, MoneyGram, and Western Union in a single quote screen.
Date-ranged transaction list with paging, currency filters, and corridor filters. Exports as JSON, CSV, Excel, or PDF statement for personal-finance dashboards, year-end tax prep, or US senior-care apps tracking remittances on behalf of relatives.
Push notifications on every state change, signed with HMAC and delivered with retry/backoff. Each event carries an idempotency key, normalized status, and the original provider-side status, so your reconciliation engine can ingest without bespoke parsing.
Read access to welcome-credit usage, referral-link redemption, and credit balance. Useful for partner growth dashboards, fraud-pattern detection on referral abuse, or LTV models that need promo-adjusted revenue per cohort.
The table below summarises the OpenData surface we can expose under user authorisation. Each row identifies the underlying source screen in the Utransfer US mobile experience, the realistic granularity, and a typical downstream use.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Sender profile & KYC tier | Account / Verification screen | Per user; updated on document refresh | Risk control, AML CTR pre-screen, tier-aware UX |
| Funding source list | Add bank / debit funding flow | Per linked instrument; masked account number | Reconciling ACH debits in accounting tools |
| FX quote (corridor-specific) | New transfer → amount entry | Per corridor pair, sub-second freshness | Comparison engines, hedging analytics |
| Transfer record | Transfer detail screen | One per transaction; status timeline included | Statements, year-end tax prep, audit trail |
| Recipient directory | Beneficiary list | Per recipient; bank/wallet metadata | Repeat-payee dashboards, fraud rings detection |
| Promo & referral ledger | Coupon / Invite screen | Per credit grant and redemption | Growth analytics, abuse detection |
| Status events | Live transfer tracker | Stream of state transitions | Webhook-driven CRM and notifications |
| Corridor metadata | Country selector / disclosures | Per supported corridor (AU, CA, IN, JP, KR, MX, PH) | Routing decisions, geo-restricted UI |
Business context: A US fintech serving Korean, Mexican, Filipino, and Indian diaspora users wants to consolidate remittance history across multiple providers. Data/API involved: Utransfer transfer-history export, FX quote, recipient directory. OpenFinance mapping: consent-based read of personal financial data, normalised against an internal canonical schema shared with Wise, Remitly, and Xoom feeds.
Business context: An accounting platform where US founders pay overseas contractors needs to attach Utransfer transfers to QuickBooks/Xero entries. Data/API involved: webhook on payout completion, statement export (CSV), FinCEN reference IDs. OpenFinance mapping: structured payment-initiation receipt feeding the books-of-record without manual CSV downloads.
Business context: An MSB-compliance vendor monitoring cumulative outbound flows per user across providers. Data/API involved: sender profile, transfer record, status events. OpenFinance mapping: aligns with FinCEN BSA/AML controls; daily aggregation supports CTR/SAR pre-screen logic and cumulative-amount triggers.
Business context: A consumer comparison app surfaces the cheapest USD→KRW or USD→MXN route in real time. Data/API involved: FX quote API, corridor metadata, fee breakdown. OpenFinance mapping: normalised quote object placed alongside Wise, Xoom, WorldRemit, OFX, and MoneyGram quotes; deep link returns the user to Utransfer for the actual transfer.
Business context: A US family-care app helps adult children watch over an elderly parent's overseas support transfers. Data/API involved: read-only transfer history, status webhook, low-balance / failed-transfer alerts. OpenFinance mapping: third-party consent flow with revocable scope, consistent with US OpenBanking 1033 expectations.
POST /api/v1/utransfer/auth/login
Content-Type: application/json
{
"phone": "+1-415-555-0188",
"country_code": "US",
"device_id": "dvc_8c2ad9f1",
"otp": "419283"
}
Response 200:
{
"access_token": "ut_at_...",
"refresh_token": "ut_rt_...",
"expires_in": 3600,
"kyc_tier": "TIER_2",
"supported_corridors": ["AU","CA","IN","JP","KR","MX","PH"]
}
# Refresh
POST /api/v1/utransfer/auth/refresh
{ "refresh_token": "ut_rt_..." }
POST /api/v1/utransfer/fx/quote
Authorization: Bearer <ACCESS_TOKEN>
{
"send_currency": "USD",
"receive_currency": "KRW",
"send_amount": 500.00,
"corridor": "US-KR"
}
Response 200:
{
"quote_id": "qt_a91f...",
"rate": 1392.45,
"fee": 0.00,
"expires_at": "2026-04-29T12:00:30Z",
"estimated_arrival": "PT1H"
}
# Statement export
GET /api/v1/utransfer/statements?from=2026-01-01&to=2026-04-29&corridor=US-MX&format=csv
Authorization: Bearer <ACCESS_TOKEN>
POST https://your-app.example.com/webhooks/utransfer
X-Utransfer-Signature: t=1714377600,v1=8c1f...
Content-Type: application/json
{
"event": "transfer.status_changed",
"idempotency_key": "evt_2f81c0",
"transfer_id": "tx_4a91...",
"previous_status": "FUNDED",
"status": "PAID_OUT",
"corridor": "US-MX",
"amount": { "send": 500.00, "receive": 8412.30, "currency_pair": "USD/MXN" },
"fincen_ref": "FC-20260429-...",
"occurred_at": "2026-04-29T11:42:18Z"
}
# Verify HMAC, then upsert into your ledger; respond 2xx within 5s.
Utransfer US is a FinCEN-registered Money Services Business (MSB Registration No. 31000246803608) and is officially recognised by the Korea Financial Supervisory Service (FSS). Any integration we deliver is built around the Bank Secrecy Act (BSA) and FinCEN MSB obligations on the US side, the FSS Foreign Exchange Transactions Act expectations on the Korean side, and US state-level money-transmitter conditions for the 32 supported states.
For consumer data handling, integrations follow CFPB Section 1033 Personal Financial Data Rights principles and OpenBanking-style consent: explicit user authorisation, scoped tokens, revocable access, and minimum-necessary data retrieval. Where partner platforms touch EU residents, we add GDPR-aligned consent records and data-subject access tooling. We never circumvent app-side controls; all extraction is performed under documented user consent or a written data-processing agreement.
A typical pipeline is intentionally short and auditable:
Utransfer US targets US-based diaspora senders — Korean-American, Mexican-American, Filipino-American, Indian-American, and Japanese-American households — who repeatedly transfer modest amounts to family or vendors abroad. The user profile skews heavily mobile (iOS and Android), comfortable with app-only onboarding, and price-sensitive: zero remittance fee plus USD 8 welcome credits and USD 10 referrals are the headline acquisition hooks. Utransfer is currently a B2C product, but its data shape — repeat-payee, recurring small-ticket, well-structured KYC — is a natural fit for B2B accounting, payroll, and compliance integrations layered on top.
Click any thumbnail to view a larger preview of the Utransfer US: Global Remit experience.
Teams that integrate Utransfer US: Global Remit often work with one or more of the apps below. We list them as part of the broader OpenFinance and cross-border remittance landscape, not as a comparison or ranking — and our studio can provide consistent integration patterns across them so unified transaction exports are practical.
We are an independent technical studio focused on App interface integration and authorized API integration for fintech, OpenFinance, OpenBanking, and OpenData scenarios. Our engineers come from banks, remittance providers, payment gateways, and mobile protocol-analysis teams, and we have shipped end-to-end adapters for transaction history, FX quoting, and webhook reconciliation on iOS and Android. Our service model is simple: you provide the target app and your requirements, we deliver runnable API source code, OpenAPI documentation, and a test plan that reflects current US and international compliance expectations.
To request a quote or to share your Utransfer US: Global Remit integration brief (target corridors, data scope, expected call volume), open the contact page below. We typically respond within one business day with a written scope and price band.
What do you need from me to start?
How long does delivery take?
How do you handle compliance?
Do you support comparison aggregators?
Utransfer US: Global Remit (package: com.utransfer.us.app) is an international money-transfer app that lets US residents send funds to Australia, Canada, India, Japan, Korea, Mexico, and the Philippines with no remittance fee, regardless of amount. It is operated by a licensed and registered fintech recognised by both the Korea Financial Supervisory Service (FSS) and the U.S. Department of Treasury FinCEN (Registration No. 31000246803608).