Digital payments automation for higher performance of companies

Unlock hidden revenues, reduce costs, increase profitability, improve your cash flow and simplify your life with easy to use payments automations and value-add services built for medium-sized companies.

KEY BENEFITS

Make more money with easy payments-related automation

Intelligent gateway
and checkout

Increase your revenues and improve potentioanl customer conversion with adaptable inteligent checkout. With one integration, you cover the entire portfolio of payment methods, and funds are available at any time.

Digital
banking

All payment services embedded into software products and platforms - from direct access to various bank accounts, online payments via different payment channels, own multibank payment account in 6 currencies, automated reconciliation.

One single account
and Open Banking

Log in to your accounts in different banks through one access. Monitor and manage all your accounts through the Payout account. Enjoy data analysis above omnichanel data.

Automatic
client verification

Verify your clients or customers fast and reduce paperwork. Automate document collection and screening to create a seamless verification experience.

GROW WITH INNOVATIVE PAYMENTS SOLUTIONS

Every client has own goals - our platform allows them to mix and match solutions easily

Some clients want to upgrade inefficient manual processes with automations, others want to increase profitability, improve cash flow and compliance with new services, or avoid tech issues by replacing 2-3 old providers with our single platform. Or all at the same time.

An innovative project requires an innovative solution. Embeded finance toolkit provides micropayments directly from the Fotomat mobile app to ensure maximum convenience when printing photos.

To be the best requires to focus on core activity. Thanks to real-time payments and automatic reconciliations, the most progressive pharmaceutical eshop in Slovakia can ship within 60 minutes and deliver to the clients within 4 hours.

Ensuring the successful reach of international audiences requires a multi currency payment account. Selection of effective solutions that enhance the use of the eshop and have remarkable benefits for users, who can make their transactions safely and with confidence.

illustrator

Our priority is that our technologies are constantly modern and secure

PHP, nodejs, .net, native-response. Fast and simple. You can use the new payment solution without further lines of a complicate code.

Node.js
Ruby
PHP
Go
  1. var https = require('https');
  2. var options = {
  3.   'method': 'POST',
  4.   'hostname': 'app.payout.one',
  5.   'path': '/api/v1/authorize',
  6.   'headers': {
  7.     'Content-Type': 'application/json',
  8.     'Accept': 'application/json'
  9.   }
  10. };
  11. var req = https.request(options, function (res) {
  12. var chunks = [];
  13. res.on("data", function (chunk) {
  14.   chunks.push(chunk);
  15. });
  1. require 'uri'
  2. require 'net/http'
  3. 
    										
  4. url = URI('https://app.payout.one/api/v1/checkouts')
  5. 
    										
  6. http = Net::HTTP.new(url.host, url.port)
  7. 
    										
  8. request = Net::HTTP::Post.new(url)
  9. request['Content-Type'] = 'application/json'
  10. request['Authorization'] =
  11.     "Bearer SFMyNTY.g3QABBACZAEEZGF0YWEDZAAGc2lnbmVkbgYAe68kd2QB.72N3LRK5QXAvJteVRhzWsAsxipwplEsec06Gtg0uSw4\n"
  12. request['Accept'] = 'application/json'
  13. request.body = "{
  14.     \"amount\": 683,
  15.     \"currency\": \"EUR\",
  16.     \"email\": \"john.doe@payout.one\",
  17.     \"customer\": {
  18.         \"first_name\": \"John\",
  19.         \"last_name\": \"Doe\",
  20.         \"note\": \"Good customer\"
  21.     },
  22.     \"external_id\": \"844c65d5-55a1-6530-f54e-02ddc9ce7b18\",
  23.     \"metadata\": {
  24.         \"note\": \"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been.\"
  25.     },
  26.     \"nonce\": \"a35fc329-6dc6-58ad-d40f-55bd981124b9\",
  27.     \"redirect_url\": \"https://payout.one/payment/redirect\",
  28.     \"signature\": \"0e82c6862a98ae7a0d1cd0b958c27b116e8c136bae899d43e8d115610c107bd3\"
  29. }"
  30. 
    										
  31. response = http.request(request)
  32. puts response.read_body
  1. <?php
  2. 
    										
  3. $curl = curl_init();
  4. 
    										
  5. curl_setopt_array($curl, array(
  6.   CURLOPT_URL => "https://app.payout.one/api/v1/authorize",
  7.   CURLOPT_RETURNTRANSFER => true,
  8.   CURLOPT_ENCODING => "",
  9.   CURLOPT_MAXREDIRS => 10,
  10.   CURLOPT_TIMEOUT => 0,
  11.   CURLOPT_FOLLOWLOCATION => false,
  12.   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  13.   CURLOPT_CUSTOMREQUEST => "POST",
  14.   CURLOPT_POSTFIELDS => "{\n\t \"client_id\": \"88a6b2e4-c485-4250--b9b8ad92d41e\",\n\t \"client_secret\": \"4c4f4df3-d026--8c4b-98e0434c882a\"\n}",
  15.   CURLOPT_HTTPHEADER => array(
  16.     "Content-Type: application/json",
  17.     "Accept: application/json"
  18.   ),
  19. ));
  20. 
    										
  21. $response = curl_exec($curl);
  22. $err = curl_error($curl);
  23. 
    										
  24. curl_close($curl);
  25. 
    										
  26. if ($err) {
  27.   echo "cURL Error #:" . $err;
  28. } else {
  29.   echo $response;
  30. }
  1. package main
  2. 
    										
  3. import (
  4.    "fmt"
  5.    "io/ioutil"
  6.    "net/http"
  7.    "strings"
  8. )
  9. 
    										
  10. func main() {
  11. 
    										
  12.    url := "https://app.payout.one/api/v1/checkouts"
  13.    method := "POST"
  14.    payload := strings.NewReader("{\n \"amount\": 683,\n \"currency\": \"EUR\",\n \"customer\": {\n \"email\": \"john.doe@payout.one\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"note\": \"Good customer\"\n },\n \"external_id\": \"844c65d5-55a1-6530-f54e-02ddc9ce7b18\",\n \"metadata\": {\n \"note\": \"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been.\"\n },\n \"nonce\": \"a35fc329-6dc6-58ad-d40f-55bd981124b9\",\n \"redirect_url\": \"https://payout.one/payment/redirect\",\n \"signature\": \"0e82c6862a98ae7a0d1cd0b958c27b116e8c136bae899d43e8d115610c107bd3\"\n}")
  15.    client := &http.Client{
  16.       CheckRedirect: func(req *http.Request, via []*http.Request) error {
  17.          return http.ErrUseLastResponse
  18.       },
  19.    }
  20.    req, err := http.NewRequest(method, url, payload)
  21. 
    										
  22.    if err != nil {
  23.       fmt.Println(err)
  24.    }
  25.    req.Header.Add("Content-Type", "application/json")
  26.    req.Header.Add("Authorization", "Bearer SFMyNTY.g3QABBACZAEEZGF0YWEDZAAGc2lnbmVkbgYAe68kd2QB.72N3LRK5QXAvJteVRhzWsAsxipwplEsec06Gtg0uSw4")
  27.    req.Header.Add("Accept", "application/json")
  28. 
    										
  29.    res, err := client.Do(req)
  30.    defer res.Body.Close()
  31.    body, err := ioutil.ReadAll(res.Body)
  32. 
    										
  33.    fmt.Println(string(body))
  34. }

Why choose Payout?

icon
99.9% success rate of realized payments

Our payment form is easy to complete and there are no issues with sending it.

icon
Get started for free

Setting up a payment account with us is free of charge. We have no doubts about the quality of our services, you can try them for free.

icon
International Coverage

Support your expansion strategy — localize your pricing and accept payments in multiple currencies.

icon
Safety first

Your sensitive information is safe with us. We meet the international 3D Secure standard for payment card processing.

icon
Your money is truly yours

The money that customers send you is quickly available to you and you can handle it as you need.

icon
Self service customizable platform

Easy integrations, automations and workflows - ideal "DIY" solutions for the needs of our clients.

Node.js
Ruby
PHP
Go
  1. var https = require('https');
  2. var options = {
  3.   'method': 'POST',
  4.   'hostname': 'ie.payout.one',
  5.   'path': '/api/v1/authorize',
  6.   'headers': {
  7.     'Content-Type': 'application/json',
  8.     'Accept': 'application/json'
  9.   }
  10. };
  11. var req = https.request(options, function (res) {
  12. var chunks = [];
  13. res.on("data", function (chunk) {
  14.   chunks.push(chunk);
  15. });
  1. var https = require('https');
  2. var options = {
  3.   'method': 'POST',
  4.   'hostname': 'ie.payout.one',
  5.   'path': '/api/v1/authorize',
  6.   'headers': {
  7.     'Content-Type': 'application/json',
  8.     'Accept': 'application/json'
  9.   }
  10. };
  11. var req = https.request(options, function (res) {
  12. var chunks = [];
  13. res.on("data", function (chunk) {
  14.   chunks.push(chunk);
  15. });
  1. var https = require('https');
  2. var options = {
  3.   'method': 'POST',
  4.   'hostname': 'ie.payout.one',
  5.   'path': '/api/v1/authorize',
  6.   'headers': {
  7.     'Content-Type': 'application/json',
  8.     'Accept': 'application/json'
  9.   }
  10. };
  11. var req = https.request(options, function (res) {
  12. var chunks = [];
  13. res.on("data", function (chunk) {
  14.   chunks.push(chunk);
  15. });
  1. var https = require('https');
  2. var options = {
  3.   'method': 'POST',
  4.   'hostname': 'ie.payout.one',
  5.   'path': '/api/v1/authorize',
  6.   'headers': {
  7.     'Content-Type': 'application/json',
  8.     'Accept': 'application/json'
  9.   }
  10. };
  11. var req = https.request(options, function (res) {
  12. var chunks = [];
  13. res.on("data", function (chunk) {
  14.   chunks.push(chunk);
  15. });

Numbers talk

We have already processed more than 550 million euros in 14 European countries. More than 600,000 satisfied customers speak for us. Together with our clients, we grow by 10% every month.

We automate everything except for communication.

We provide above-standard client support for you and your clients, and communication starts with the words: "Yes, how can I help you?".

Composition

Start with Payout today

Create account

Are you interested? Contact us