Payment solutions made easy
A payment gateway respecting your needs and your business. No hidden fees. No subscription needed. Create sellers, automate payouts and customize it your way.
Our services are trusted by
Business driven
Marketplaces
Marketplaces are growing rapidly, and they have specific needs for their payment systems. Everypay offers state of the art infrastructure and services that effortlessly execute your marketplace payments.
E-commerce
We offer easy ways to integrate our payment gateway on your website or platform. There is a variety of well known E-commerce platforms supported by us, such as: Shopfiy, Woocommerce, Magento and more. We also offer custom tailor made solutions.
Features
Innovative solutions
A better way to receive and move money to satisfy your business needs
Payment methods
- Accept payments via a wide range of solutions , this includes E-POS, V-POS, card tokenization, and more.
Data and insights
- A transparent and real time view of payments data and insights in order to increase your acceptance and sales.
Enhanced REST API
- A fully functional structure that allows businesses to connect and accept payments.
Safety and security
- Performing real-time transaction analysis using strong anti-fraud prevention methods to minimize risk.
Scale
12
Countries passported
50+
Marketplaces enabled
17.500+
Companies served
100.000+
API requests per day
For developers
Powerful API
Well documented instructions will guide you through Everypay's REST API in order to show you how to authenticate, make requests, and retrieve data.
Ready libraries
We offer ready made and well maintained libraries for PHP, Java, Ruby, .NET and many more.
Plugins
Ready plugins for major E-commerce platforms like Shopify, WooCommerce, Magento and more.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const https = require('https')
const querystring = require('querystring');
const form = querystring.stringify({
token: 'ctn_Yj0NIWKRpfiwsOgXG27kxnvO',
amount: '10000',
description: 'Order No.123'
});
const auth = 'Basic ' + new Buffer("{your-private-key}:").toString('base64');
const options = {
hostname: 'sandbox-api.everypay.gr',
path: '/payments',
method: 'POST',
headers: {
"Authorization": auth,
'Content-Type': 'application/x-www-form-urlencoded',
...