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.
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.
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.
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.
Verify your clients or customers fast and reduce paperwork. Automate document collection and screening to create a seamless verification experience.
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.
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))
}
Our payment form is easy to complete and there are no issues with sending it.
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.
Support your expansion strategy — localize your pricing and accept payments in multiple currencies.
Your sensitive information is safe with us. We meet the international 3D Secure standard for payment card processing.
The money that customers send you is quickly available to you and you can handle it as you need.
Easy integrations, automations and workflows - ideal "DIY" solutions for the needs of our clients.
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 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 provide above-standard client support for you and your clients, and communication starts with the words: "Yes, how can I help you?".