Optimize Your E-Commerce

The Easy Way to Sell.

The fastest and modern way to get paid from your customers without the need for an e-commerce site. Integrate once and let your customers pay you how they want

- We Make Your Job Easier -

See what we can provide you with the options and possibilities we offer and how we can make your work simple.

Increase Sales

We save you from e-commerce software, hosting costs and personnel costs. Add the product you will sell immediately and be ready for sale.

Life Saving Solutions

Digital banking, smart value-added services for sales. We offer you very good advantages with the best commission rates. Everything in one panel.

Secure Payments

In all sales, your data is sent and payment is received with internationally secure PCI DSS certified software and SSL protected encrypted panels.

- Optimized solutions for your business

We specialize in publishing and technically integrating sales solutions. With us you get everything from one source: modular end-to-end solutions, you can configure flexibly. By getting effective results, you can both serve your customers well and support the potential turnover increase in your business with your sales. Sign up to the system now and get the opportunity to make sales with a single point of control.

Read More

-Everything Is Very Practical-

We have developed the practical and easiest methods of getting paid with GoStoreX, and we have given e-commerce a new direction with technology!

Create Storefront

You don't need to have an e-commerce site! Create a store and add your products and start selling now! Get rid of a lot of hassle.

Send/Request Money

With the money you earn from sales, you can use it as a payment option when purchasing products, or send it from account to account and complete the payment very simply.

Bill Payment

By entering your product and invoice information, you can send a direct invoice payment link to your customers and receive your payments quickly.

Direct Payment Link

You can get your customers paid in a few minutes without having to deal with complicated steps such as registration etc. If you wish, you can get paid by direct link or by sms.

Pay with SMS

Send the product link immediately via sms, make a quick mobile payment and let your customer receive the product. Everything is very simple BUY and OUT!

Collect Payments in Wallet

Work with rates according to your business potential, collect your earnings in your wallet and receive your payments. Let the whole system automatically show your earnings.

NOW

You Can Quickly Integrate With Our System

Do you have a website and want to synchronize your site with us and send us the payments to our page? You don't need to wait. You can show your products on your official site and complete the purchase on our website. Thus, instead of being divided into several places, you can manage your sales and earnings in a single panel. Come on, complete your API integrations and automate everything without waiting for you.

Read More

curl --location --request POST https://gostorex.com'/api/payment/create' \
--form 'token="MERCHANT_KEY"' \
--form 'public_key="PUBLIC_KEY"' \
--form 'callback_url="yourodmain.com/redirect"' \
--form 'reference_code="ref_1"' \
--form 'amount="10"' \
--form 'email="[email protected]"' \
--form 'first_name="jhone "' \
--form 'last_name="doe"' \
--form 'title="test payment"' \
--form 'description="payment description"' \
--form 'quantity="1"' \
--form 'currency="USD"'
                                       

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => https://gostorex.com'/api/payment/create',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => array(
    'token' => 'MERCHANT_KEY',
    'public_key' => 'PUBLIC_KEY',
    'callback_url' => 'yourodmain.com/redirect',
    'reference_code' => 'ref_1',
    'amount' => '10',
    'email' => '[email protected]',
    'first_name' => 'jhone ',
    'last_name' => 'doe',
    'title' => 'test payment',
    'description' => 'payment description',
    'quantity' => '1',
    'currency' => 'USD'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

                                       
                                            
<form method="POST" action="https://gostorex.com/api/payment/merchant/create" >
        <input type="hidden" name="token" value="MERCHANT_KEY" />
        <input type="hidden" name="public_key" value="PUBLIC_KEY" />
        <input type="hidden" name="callback_url" value="https://yourdomain.com/success" />
        <input type="hidden" name="reference_code" value="UNIQUE_REF_ID" />
        <input type="hidden" name="amount" value="100" />
        <input type="hidden" name="email" value="[email protected]" />
        <input type="hidden" name="first_name" value="John" />
        <input type="hidden" name="last_name" value="Doe" />
        <input type="hidden" name="title" value="Payment For Products" />
        <input type="hidden" name="description" value="The description of entire payments" />
        <input type="hidden" name="quantity" value="1" />
        <input type="hidden" name="currency" value="USD" />
        <input type="submit" value="submit" />
</form>
                                           
                                       

var request = require('request');
var options = {
  'method': 'POST',
  'url': https://gostorex.com'/api/payment/create',
  'headers': {
  },
  formData: {
    'token': 'MERCHANT_KEY',
    'public_key': 'PUBLIC_KEY',
    'callback_url': 'https://yourdomain.com/success',
    'reference_code': 'ref_1',
    'amount': '10',
    'email': '[email protected]',
    'first_name': 'jhone ',
    'last_name': 'doe',
    'title': 'test payment',
    'description': 'payment description',
    'quantity': '1',
    'currency': 'USD'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

require "uri"
require "net/http"

url = URI(https://gostorex.com"/api/payment/create")

http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
form_data = [['token', 'MERCHANT_KEY'],['public_key', 'PUBLIC_KEY'],['callback_url', 'https://yourdomain.com/success'],['reference_code', 'ref_1'],['amount', '10'],['email', '[email protected]'],['first_name', 'jhone '],['last_name', 'doe'],['title', 'test payment'],['description', 'payment description'],['quantity', '1'],['currency', 'USD']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body


import requests

url = https://gostorex.com"/api/payment/create"

payload={'token': 'MERCHANT_KEY',
'public_key': 'PUBLIC_KEY',
'callback_url': 'https://yourdomain.com/success',
'reference_code': 'ref_1',
'amount': '10',
'email': '[email protected]',
'first_name': 'jhone ',
'last_name': 'doe',
'title': 'test payment',
'description': 'payment description',
'quantity': '1',
'currency': 'USD'}
files=[

]
headers = {}

response = requests.request("POST", url, headers=headers, data=payload, files=files)

print(response.text)


-Questions & Answers-

We wanted to give a short answer about what you were wondering, we have compiled your general questions below.

GoStoreX is a commercial payment platform where you can direct product sales links on your own website or create your own virtual shop. It is an e-commerce solution where you can sell and get paid to your customers over the internet and work under very advantageous conditions. On our system, you can sell by sharing the link on social media, or by sending an sms.

You can create your membership on our site for free, and you can start using your special shops immediately without paying a monthly fee.

You don't need to be a company to sell on GoStoreX. Whether you are an individual or a company, you can showcase and sell your products or services as you wish, without any limits.

Each subscription supports multiple stores. However, you have the opportunity to open a maximum of 1 shop for each membership.

Your customers do not need to be a member of our system to shop from our store. They can easily buy the product or service they like by paying with a credit card in your shop, by being directed directly from your site to the purchase process from the link of the product they want to buy, or by filling out the form on our site.

You can sell digital and physical products on GoStoreX. It is possible to sell all products other than the prohibited products on our site.

Copyright © 2022. All Rights Reserved