Chat with us, powered by LiveChat

Contact us

Thanks for getting in touch!
We'll reach out to you shortly.
Oops! Something went wrong while submitting the form.

Backed by the Best

We partner with reputable brands such as Citibank, J.P. Morgan and Wells Fargo that are licensed to operate efficiently, protect your money and are subject to regulatory and supervisory frameworks across the U.S., Europe and Asia.

การโอนเงินระหว่างประเทศใช้เวลากี่วัน

$150 million

PingPong transfers more than 150 million dollars a day for international eCommerce sellers just like you.

1 million

More than 1,000,000 sellers turn to PingPong for safely bringing their money home.

$90 Billion

PingPong has processed more than 90 billion dollars in cross-border payments for eCommerce.
Unionpay
Fidelity logo
JP Morgan Logo
Citi logo
Mastercard
Bank of America logo
DBS Logo
Apply Pay logo

Safe. Trustworthy. Respected.

When you partner with PingPong, your payments will be made on a secure platform that’s compliant with financial regulators around the world.

PingPong holds all customer funds in trust until they are withdrawn. We maintain sufficient levels of capital in accordance with regulations for each of the jurisdictions in which we operate.

ประเทศทั่วโลก
Europe

In Europe

PingPong Europe S.A. (EU) is a licensed Payments Institution with The Commission de Surveillance du Secteur Financier (CSSF) in Luxembourg, and is authorized to execute payment transactions and conduct remittances originating from throughout the EU.

HK Japan

In Hong Kong & Japan

PingPong Global Holdings Ltd. (Hong Kong) is a licensed Money Service Operations with Customs and Excise Department.

PingPong is a member of JPSA (the “Japan Payment Service Association” )

United States

In the United States

PingPong Global Solutions Inc. (USA) is registered as a Money Services Business with the Financial Crimes Enforcement Network (FinCEN) of the U.S. Treasury, and a non-depository financial institution on the National Mortgage State Licensing System (1572799).

PingPong is regulated under the EU’s General Data Protection Regulation (GDPR) and the 23 NYCRR 500, the New York Department of Financial Services’ cybersecurity regulations.

New York State File No. 4729804
FinCEN registration number No. 31000104088714

For Alaska Residents Only:

If your issue is unresolved by PingPong Global Solutions Inc, 404-415-6568, please submit formal complaints with the State of Alaska, Division of Banking & Securities.

Please download the form here: https://www.commerce.alaska.gov/web/portals/3/pub/DBSGeneralComplaintFormupdated.pdf
Submit formal complaint form with supporting documents:
1. Division of Banking & Securities PO Box 110807 Juneau, AK 99811-0807
2. If you are an Alaska resident with questions regarding formal complaints, please email us at dbs.licensing@alaska.gov or call Nine Zero Seven Four Six Five Two Five Two One

For Texas Residents Only:

If you have a complaint, first contact the consumer assistance division of PingPong Global Solutions Inc. at 415-404-6568, if you still have an unresolved complaint regarding the company’s (money transmission, currency exchange or depository agent) activity, please direct your complaint to: Texas Department of Banking, 2601 North Lamar Boulevard, Austin, Texas 78705, or to 1-877-276-5554 (toll free), www.dob.texas.gov.

PingPong cooperates with the Financial Intelligence Unit for each of the jurisdictions in which it operates, and submits financial transaction reports when requested by the appropriate regulator.

(function () { // 1. 定义需要透传的参数白名单 const TRACKING_KEYS = ['inviteCode', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_content', 'utm_term', 'gclid', 'fbclid', '_gl']; // 2. 获取当前页面的所有参数 const currentParams = new URLSearchParams(window.location.search); let passThroughString = ''; // 3. 拼接参数,确保每个参数前都有 '&' TRACKING_KEYS.forEach((key) => { if (currentParams.has(key)) { const val = encodeURIComponent(currentParams.get(key)); passThroughString += `&${key}=${val}`; // 注意这里:强制在每个参数前加 & } }); // 如果没有参数,直接结束,不执行后续逻辑 if (!passThroughString) return; // 4. 【暴力拦截】监听所有即将发生的跳转 // 这一步比点击事件更底层,只要浏览器想跳转,我们就能拦住 window.addEventListener( 'beforeunload', function (e) { // 获取当前鼠标点击的目标(如果是通过点击触发的跳转) // 注意:beforeunload 很难获取点击目标,所以我们改用捕获阶段的点击事件更稳妥 }, true, ); // 5. 【修正方案】使用捕获阶段的点击监听(比冒泡更早,更暴力) document.addEventListener( 'click', function (e) { // 找到被点击的链接 标签 let target = e.target; while (target && target !== document) { if (target.tagName === 'A' && target.href) { // 判断是否是我们要跳转的目标域名 if (target.href.includes('business.pingpongx.com')) { e.preventDefault(); // 阻止默认跳转 // --- 开始组装新链接 --- const url = new URL(target.href); // 1. 强制设置 location=in url.searchParams.set('location', 'in'); // 2. 把我们提取到的参数一个个塞进去(自动处理 & 分隔符) TRACKING_KEYS.forEach((key) => { if (currentParams.has(key)) { url.searchParams.set(key, currentParams.get(key)); } }); // 3. 执行跳转 window.location.href = url.toString(); return; // 处理完就退出 } } target = target.parentNode; } }, true, // true 表示在“捕获阶段”监听,比页面原有的任何事件都优先 ); })();