Digital payments for higher performance of companies

Payout offers more for your business and your clients.

ABOUT US

All services in one place

Payment
gateway

With one integration, you will cover the entire portfolio of payment methods, and funds are available at any time.

Digital
banking

Software products and platforms integrated with payment services, such as access to bank accounts in real-time and online payments.

Payout
Banklink

Log in to your accounts from different banks through one account. You can monitor and manage all your accounts through the Payout account.

Payout
ID

Increase the security of your business and eliminate risks with online ID, bank account verification and many other benefits.

PAYOUT, THE IDEAL PARTNER FOR YOU

We can meet any challenge the client presents us with in the area of fintech

Payout is a solution that provides easy, fast and accurate payments.

Thanks to it, we have added the possibility of recurring payments to our offer and receiving payments natively directly in the mobile application.

We have provided the client with payment settings so that they could deliver their products already after four hours from the creation of the order.

One of our successful clients, Mobilonline, is also active in foreign markets. We were able to activate payments in Romanian and Hungarian currencies in a timely manner based on their requirements.

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
We play by the rules

We provide payment services based on licenses valid across EU, and we fulfill our obligations to the last detail.

icon
99.9% success rate of realized payments

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

icon
Your money is truly yours

The money that customers send you is quickly available and you can use it as you wish.

icon
Get started for free

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

icon
Safety first

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

icon
Tailor-made solutions

We create ideal tailor-made solutions for the needs of our clients in a short time, using the latest technologies.

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. });

We are transparent, we will explain and clarify everything

We have already processed over 750 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