Skip to content

Latest commit

 

History

History
371 lines (329 loc) · 15 KB

File metadata and controls

371 lines (329 loc) · 15 KB
title PayRequest.io | Everything you need to accept payments and to sell online.
description Everything you need to accept payments and to sell online.
<style> .section-content .image-container { height: 400px; } .section-content .image-container .img-comments { z-index: 3; left: -100px; top: -40px; } .section-content .image-container img { position: absolute; width: 100%; max-width: 380px; } [class*=shadow] { transition: all .15s ease; } .section-content .image-container .img-blog { z-index: 4; left: 100px; top: 20px; } .profile-page .card-profile .card-profile-image img, .shadow { box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07)!important; } rounded { border-radius: .25rem!important; } </style>

No-Code Payment platform for

PayRequest is a no-code payment platform, to accept all payment methods, and start your business worldwide, share your own payrequest.me link and create payment pages for your business.


PayRequest - Simple, fast payment links via Stripe and Mollie | Product Hunt Embed Stripe logo

PayRequest Links

Create and share payment links in seconds, no coding experience required.

PayRequest Donations

Create your own donation page and share it with everybody in the world.

PayRequest Pages

Create your own payrequest.me page and share your payment page with everyone.

{% include seen-on.html %} {% include features-block.html %} {% include payrequest-dashboard-block.md %}

Frequently asked questions

What is PayRequest ?

PayRequest is a Payment Platform where you can create payment links with Stripe or Mollie More coming soon!, and directly send reminders to your customers via email or sms. With PayRequest you can create Beautiful Payment Links and change the look & feel of your payment link pages. Add your own logo, change the company avatar or add your own background.

What is a Payment Link ?
A payment link is a unique link you can share via email or sms which contains a specified amount and a personal message for the reciever. On the payment link page they can choose a payment method like credit card and pay the requested amount. After a succesfull payment you will get a notification about it.
What are the costs for using payrequest ?
Signup for Payrequest and creating payment links is free, you only pay the transactions costs of Mollie or Stripe plus a 2% service fee to cover the costs of our platform.
Do you offer premium to non-profit organisations?
Educational and non-profit organisations could be eligible to receive the premium package for no additional costs except sms or letter credits. For more information about this topic please contact us.
My Payment Service Provider is not listed ?
For now we only support Mollie & Stripe because these are big names in the PSP market, we are planning to support more PSP in the future, also CoinBase & PayPal is on our roadmap, if you need any other PSP please contact us and we will add it to our roadmap.

Start sending payment links

Create a payment link for your customer or use reusaable links to let all your customers pay.

Create your payment link
<script> var TxtRotate = function(el, toRotate, period) { this.toRotate = toRotate; this.el = el; this.loopNum = 0; this.period = parseInt(period, 10) || 2000; this.txt = ''; this.tick(); this.isDeleting = false; }; TxtRotate.prototype.tick = function() { var i = this.loopNum % this.toRotate.length; var fullTxt = this.toRotate[i]; if (this.isDeleting) { this.txt = fullTxt.substring(0, this.txt.length - 1); } else { this.txt = fullTxt.substring(0, this.txt.length + 1); } this.el.innerHTML = ''+this.txt+''; var that = this; var delta = 300 - Math.random() * 100; if (this.isDeleting) { delta /= 2; } if (!this.isDeleting && this.txt === fullTxt) { delta = this.period; this.isDeleting = true; } else if (this.isDeleting && this.txt === '') { this.isDeleting = false; this.loopNum++; delta = 500; } setTimeout(function() { that.tick(); }, delta); }; window.onload = function() { var elements = document.getElementsByClassName('txt-rotate'); for (var i=0; i