Payout offers more for your business and your clients.
With one integration, you will cover the entire portfolio of payment methods, and funds are available at any time.
Software products and platforms integrated with payment services, such as access to bank accounts in real-time and online payments.
Log in to your accounts from different banks through one account. You can monitor and manage all your accounts through the Payout account.
Increase the security of your business and eliminate risks with online ID, bank account verification and many other benefits.
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.
PHP, nodejs, .net, native-response. Fast and simple. You can use the new payment solution without further lines of a complicate code.
var https = require('https');
var options = {
'method': 'POST',
'hostname': 'app.payout.one',
'path': '/api/v1/authorize',
'headers': {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
require 'uri'
require 'net/http'
url = URI('https://app.payout.one/api/v1/checkouts')
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request['Content-Type'] = 'application/json'
request['Authorization'] =
"Bearer SFMyNTY.g3QABBACZAEEZGF0YWEDZAAGc2lnbmVkbgYAe68kd2QB.72N3LRK5QXAvJteVRhzWsAsxipwplEsec06Gtg0uSw4\n"
request['Accept'] = 'application/json'
request.body = "{
\"amount\": 683,
\"currency\": \"EUR\",
\"email\": \"john.doe@payout.one\",
\"customer\": {
\"first_name\": \"John\",
\"last_name\": \"Doe\",
\"note\": \"Good customer\"
},
\"external_id\": \"844c65d5-55a1-6530-f54e-02ddc9ce7b18\",
\"metadata\": {
\"note\": \"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been.\"
},
\"nonce\": \"a35fc329-6dc6-58ad-d40f-55bd981124b9\",
\"redirect_url\": \"https://payout.one/payment/redirect\",
\"signature\": \"0e82c6862a98ae7a0d1cd0b958c27b116e8c136bae899d43e8d115610c107bd3\"
}"
response = http.request(request)
puts response.read_body
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://app.payout.one/api/v1/authorize",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => false,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\n\t \"client_id\": \"88a6b2e4-c485-4250--b9b8ad92d41e\",\n\t \"client_secret\": \"4c4f4df3-d026--8c4b-98e0434c882a\"\n}",
CURLOPT_HTTPHEADER => array(
"Content-Type: application/json",
"Accept: application/json"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main
import (
"fmt"
"io/ioutil"
"net/http"
"strings"
)
func main() {
url := "https://app.payout.one/api/v1/checkouts"
method := "POST"
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}")
client := &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Bearer SFMyNTY.g3QABBACZAEEZGF0YWEDZAAGc2lnbmVkbgYAe68kd2QB.72N3LRK5QXAvJteVRhzWsAsxipwplEsec06Gtg0uSw4")
req.Header.Add("Accept", "application/json")
res, err := client.Do(req)
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
}
We provide payment services based on licenses valid across EU, and we fulfill our obligations to the last detail.
Our payment form is easy to complete and there are no issues with sending it.
The money that customers send you is quickly available and you can use it as you wish.
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.
Your sensitive information is safe with us. We meet the international 3D Secure standard for payment card processing.
We create ideal tailor-made solutions for the needs of our clients in a short time, using the latest technologies.
var https = require('https');
var options = {
'method': 'POST',
'hostname': 'ie.payout.one',
'path': '/api/v1/authorize',
'headers': {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
var https = require('https');
var options = {
'method': 'POST',
'hostname': 'ie.payout.one',
'path': '/api/v1/authorize',
'headers': {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
var https = require('https');
var options = {
'method': 'POST',
'hostname': 'ie.payout.one',
'path': '/api/v1/authorize',
'headers': {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
var https = require('https');
var options = {
'method': 'POST',
'hostname': 'ie.payout.one',
'path': '/api/v1/authorize',
'headers': {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
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 provide above-standard client support for you and your clients, and communication starts with the words: "Yes, how can I help you?".