Make Payouts Easy With Our API
The payment infrastructure and operations you need to succeed.
Accept payments, send payouts, and onboard sellers without having to worry about compliance and security. Let us handle the hard stuff.
Trusted by
A Single Unified Payouts Platform For All Your Payments
Onboard users in seconds with staggered KYC
Use Dots' prebuilt flows or build your custom UI to get up and running quickly. We handle Know Your Customer (KYC) obligations and make sure you're compliant in seconds.
- Prevent user error and simplify signups with Dots' staggered onboarding
- Automate OFAC checks, ID verification, TIN matching, and more through our simple API
Send Payouts
Dots lets you pay out users in 150+ currencies and dozens of popular payment methods across the globe.
- PayPal
- Gift Cards
- Local Bank Transfers
- ACH (US)
- RTP (US)
- Venmo (US)
- CashApp (US)
- Interac (Canada)
- CLABE (Mexico)
- BPAY
- M-PESA (Kenya)
- PayGate (South Africa)
- Bacs (UK)
- SEPA
- PrivatBank (Ukraine)
- UPI (India)
- bKash (Bangladesh)
- GoPay (Indonesia)
- FPS (Hong Kong)
- DuitNow (Malaysia)
- GCash (Philipines)
- GrapPay (Philipines, Indonesia)
- Shopee Pay (Philipines)
- PayNow (Singapore)
Control how funds flow
Gain full control over your money movement with our flexible API. Effectively route funds between multiple users, send instant payouts globally, and easily manage fees.
An Easy Solve For Busy Developers - Leave the Payments to Dots
Elevate Your Disbursements
Move Fast
Our drop-in components lets you launch in seconds and gain access to our powerful network of payment providers.
Boost Revenue
Dots customers have reported a 31% increase in revenue activity after switching to Dots.
Accommodate Everyone
Offer Venmo, CashApp, PayPal, Instant ACH and unlock international payouts to over 150 local currencies.
Activate Revenue Streams
Leverage Dots suite of financial products to build additional sources of revenue on your platform.
Automate Your Payables With Our Payouts API
Used by Platforms and Marketplaces Small > Enterprise. Globally.
“I had to dedicate at least three to 6 hours a week just to process the day to day payments to drivers. After implementing Dots, it's a 1 hour a week thing. Dots for us has been phenomenal.”
“Since integrating with Dots, we've been able to increase our signup rates exponentially. More specifically, Dots integration has increased our creator signup conversion rate by 31% for a few reasons. Being able to onboard users after their first payment was just game changing for us. Before with Stripe, we had to pretty much ask for everything under the sun from a creator, before they even had any trust or value brought to them by us. Being able to move that flow to after we provided value to gain trust has skyrocketed the growth on our creator side. So that's been awesome.”
“Our payees love Dots and the multitude of payout options! They rated our previous payments provider a 2.6 out of 5 and Dots a 4.5 out of 5.”
“Since implementing Dots, just about everything–time, speed, user interface–is better. At every turn, we were disappointed with Stripe’s performance, especially regarding speed. It was so slow for us that mailing a physical paper check to the customer was faster than the time it took for them to payout on their ACH transactions. Our customers would also get frequent account holds as most of our customers don't have websites or an online presence so Stripe’s automatic verification system just wouldn't work for them. But with Dots, the onboarding and verification process has been seamless. ”
“Before Dots, we had to pay a lump sum to every producer and make sure they would would divvy the comedians' payouts on their end. The process was super manual, untrackable and made collecting 1099 information really hard. Dots let us give money to comedians directly. We love Dots so much we're trying to add it to more stuff! They're incredibly responsive and add requested features quickly.”
“I had to dedicate at least three to 6 hours a week just to process the day to day payments to drivers. After implementing Dots, it's a 1 hour a week thing. Dots for us has been phenomenal.”
“Since integrating with Dots, we've been able to increase our signup rates exponentially. More specifically, Dots integration has increased our creator signup conversion rate by 31% for a few reasons. Being able to onboard users after their first payment was just game changing for us. Before with Stripe, we had to pretty much ask for everything under the sun from a creator, before they even had any trust or value brought to them by us. Being able to move that flow to after we provided value to gain trust has skyrocketed the growth on our creator side. So that's been awesome.”
“Our payees love Dots and the multitude of payout options! They rated our previous payments provider a 2.6 out of 5 and Dots a 4.5 out of 5.”
“Since implementing Dots, just about everything–time, speed, user interface–is better. At every turn, we were disappointed with Stripe’s performance, especially regarding speed. It was so slow for us that mailing a physical paper check to the customer was faster than the time it took for them to payout on their ACH transactions. Our customers would also get frequent account holds as most of our customers don't have websites or an online presence so Stripe’s automatic verification system just wouldn't work for them. But with Dots, the onboarding and verification process has been seamless. ”
“Before Dots, we had to pay a lump sum to every producer and make sure they would would divvy the comedians' payouts on their end. The process was super manual, untrackable and made collecting 1099 information really hard. Dots let us give money to comedians directly. We love Dots so much we're trying to add it to more stuff! They're incredibly responsive and add requested features quickly.”
Payments Building Blocks for Every Business Model
Facilitate and monetize payments on your platform
Simplify disbursements with instant onboarding and payout links. Whether you're paying out affiliates or global experts, let them get paid how they want - instantly.
Learn morePower payments for your marketplace
Supercharge your marketplace with flexible payouts, automatic compliance, and instant onboarding to boost supply-side retention and satisfaction.
Learn moreSend payouts around the world
Pay your creators, freelancers, or contractors wherever they are at competitive rates in their local currencies.
Learn moreFacilitate and monetize payments on your platform
Utilize Dots wallets to unlock low cost processing and encourage users to keep their funds in-network.
Learn moreCreated by developers for developers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
curl https://pls.senddotssandbox.com/api/payouts/create_payout_link \
-X POST \
-H "Authorization: Basic <TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"delivery": {
"method": "link"
}
"amount": 1000,
}'
response = {
"success": true,
"payout_link": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"link": "https://senddotssandbox.com/payout_link/dsfvytoehf3745bfm2k3244543fdf",
"original_amount": 1000,
"amount": 1000,
"status": "delivered",
"api_app_name": "Test App",
"payee": {
"first_name": null,
"last_name": null,
"email": null,
"country_code": null,
"phone_number": null
}
}
}