Bitcoin Forum

Economy => Service Announcements => Topic started by: CryptAPI-MKTG on April 30, 2018, 12:32:16 PM



Title: ⚡ CryptAPI ⚡ Payment Gateway 🔥 ERC20 / TRC20 / BEP20 / Polygon supported 🔥
Post by: CryptAPI-MKTG on April 30, 2018, 12:32:16 PM


CryptAPI is a multi-address, multi-cryptocurrency payment processor, with support for the most used cryptocurrencies.

CryptAPI supports payments in many cryptocurrencies and ERC-20, TRC-20, BEP-20, Polygon tokens, directly to your crypto wallet, without any sign-ups, API keys or lengthy processes.

All you need is to provide your crypto address.  :o

Since 2018, your reliable payments provider  8)




Features

  • Multi-address payments
  • Multi-currency Integration
  • No setup or monthly fees
  • Lowest Fees & No Hidden Costs
  • Security
  • Privacy-oriented
  • No Registrations
  • Easy Integration
  • No Polling Required
  • Only wallet address necessary to start getting paid




Full List of Supported Cryptocurrencies & Tokens here (https://cryptapi.io/cryptocurrencies/)

Can't find your favorite token or want to list your own? Message us on Telegram (https://t.me/cryptapi_support)

At CryptAPI, our fees are completely straight-forward with no hidden costs, and all funds are sent immediately to your own wallet!


All our fees and minimums for each currency can be checked at our Pricing page
Our base fee starts at 1%, but can go down to 0.25% based on 30-day aggregated volumes  :o

For more info you can check our documentation (https://docs.cryptapi.io) or contact us directly via our live chat or Discord server (https://discord.gg/cryptapi).



Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: xbtx on April 30, 2018, 01:53:38 PM
I might be interested in using this on a service I'm developing, but I was also looking to provide users with the option to pay with Bitcoin Cash. Do you have plans to support BCH?


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on April 30, 2018, 10:31:30 PM
yes, we are looking to integrate Litecoin and Bitcoin Cash in the near future, we expect to have it done within a couple of weeks


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: Enre on May 01, 2018, 05:16:49 AM
Where's the list of fees?
Checked clicked the link but it just brought me to your documentation


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 01, 2018, 08:21:12 AM
Where's the list of fees?
Checked clicked the link but it just brought me to your documentation

Once you are on DOC page, just click on "GET /btc/create Create a new BTC address to receive payments""

Each coin has different fees..,


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 01, 2018, 08:51:17 AM
Where's the list of fees?
Checked clicked the link but it just brought me to your documentation

Here is the full fee formulas with the "minimum amounts" needed to process a payment, for all the coins we support so far (updated on 1st May 2018):

Coin Minimum Amount      Fee
Bitcoin0.0005 BTCmax(0.0002, 0.01 * amount)
Ethereum0.001 Ethermax(0.0005, 0.01 * amount)
IOTA0.5 MIOTAmax(0.25, 0.01 * amount)

(example: bitcoin fee is 1% or 0.0002 bitcoins, whichever is greater)

To check the updated "fees" and "minimum amounts", please always check our DOC page (https://cryptapi.io/docs/) and click on "GET" buttons, as show below:

https://image.ibb.co/gGD4m7/screen_docs.png


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: xbtx on May 01, 2018, 11:31:46 PM
Let's say I want to charge 100 Euro and I want to receive in Ethereum, is there an easy way to convert that into eth? Does the API allow me to do that?


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 02, 2018, 04:18:22 PM
Let's say I want to charge 100 Euro and I want to receive in Ethereum, is there an easy way to convert that into eth? Does the API allow me to do that?

When you make a request to create a new payment address you don't specify the amount, the API will forward any amount received (equal or above the minimum) on that address to you.

If you want to request an amount in Euro (or any other FIAT currency) the best way is to use a free price ticker API to get the current price and then do some simple math.

For instance, you can use the Coinmarketcap API: https://api.coinmarketcap.com/v2/ticker/1027/?convert=EUR

get the price (675€) and just do: 100€ (the amount you want) / 675€ = 0.148148148148 eth

Save that amount on your database (along with the invoice) and then tell the user to send that amount to the address.

Then, on your callback logic, just check if the amount sent is 148148148148000000 (0.148148148148 in Wei), and, if so, validate the user's purchase.

Keep in mind that, on the callback request, we send the values in the smallest units of the coin to make it easier, so the values will be sent in Satoshi, Wei and IOTA, not in Bitcoin, Ether or Miota.

Also, beware that those price ticker APIs may have request limits, the Coinmarketcap one shown above asks that you do not make more than 10 requests a minute, which may be not enough if you have high demand. In that case you can create your own price cache, where you poll the API for prices every 5 minutes or so and update the prices on your database. When making a request just check the latest price for that coin on your database.


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: xbtx on May 02, 2018, 09:49:34 PM
Thank you for the thorough response! I will use this on my project.


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 03, 2018, 06:03:15 PM
Great! You will see it is very easy!

However, we are always here to help and to reply to any question

 8)


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: felicita on May 03, 2018, 06:57:56 PM
looks interesting but is it only possible to accept payments or also posible to send payments with this api ?

regards


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 03, 2018, 08:12:57 PM
looks interesting but is it only possible to accept payments or also posible to send payments with this api ?

regards

Do you mean to use the money collected to pay somebody (as a wallet)?


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 15, 2018, 10:06:09 PM
Bitcoin Cash (BCH) now supported!

Bitcoin Cash (BCH) support was one of the most requested features to add on our service and we heard you!

As of today Bitcoin Cash is available for you to use, the API is identical to Bitcoin (and the other coins we support), the interactive documentation can be seen here: https://cryptapi.io/docs/#/Bitcoin_Cash/bchcreate (https://cryptapi.io/docs/#/Bitcoin_Cash/bchcreate)

Any issues or bugs you may find, as well as suggestions, please let us know through our Twitter or the contact form and we'll deal with it ASAP.

Uncertain if you should support Bitcoin or Bitcoin Cash on your service?
We have the answer: why not both?

Stay tuned for more updates as we will introduce support for more coins in the very near future, we are working on implementing and testing Litecoin (LTC), which should be available before the weekend!

Also, due to the systems shortage earlier this week, we decided to wave our fees on Bitcoin API until May 18th, so feel "free" to use it as much as you want!




Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 22, 2018, 08:27:20 PM
Litecoin (LTC) now supported!

Litecoin (LTC) support was also one of the most requested features to add on our service and we heard you!

As of today Litecoin is available for you to use, the API is identical to Bitcoin (and the other coins we support), the interactive documentation can be seen here: https://cryptapi.io/docs/#/Litecoin (https://cryptapi.io/docs/#/Litecoin)

Any issues or bugs you may find, as well as suggestions, please let us know through our Twitter or the contact form and we'll deal with it ASAP.

Uncertain if you should support Bitcoin, Bitcoin Cash, Ethereum, IOTA or Litecoin on your service?
We have the answer: why not ALL of them?  8) ;D






Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 22, 2018, 08:38:35 PM
OUR UPTIME STATUS IS GOING BETTER AND BETTER!

https://image.ibb.co/nrULgT/Screenshot_2018_05_23_00_35_03.png

CHECK ANYTIME OUR LIVE STATS (https://status.cryptapi.io/)!


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on May 24, 2018, 09:29:15 AM
LIVE SUPPORT IS AVAILABLE!


JOIN today our Telegram group!

Click here--> https://t.me/cryptapi (https://t.me/cryptapi)




Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated.
Post by: CryptAPI-MKTG on September 20, 2019, 02:19:16 PM
NEW COINS ADDED!

The coins managed by CryptAPI at the moment are:

- Bitcoin
- Bitcoin Cash
- Litecoin
- Ethereum
- Monero
- IOTA

...and the list is growing!  8) 8) 8) 8)

KNOW MORE BY VISITING OUR MAIN WEBSITE!

https://cryptapi.io/ (https://cryptapi.io/)

Our support service is available 24/7, even with the chat you find one the website!


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated. [no signup required]
Post by: CryptAPI-MKTG on September 25, 2019, 03:14:21 PM
OP updated with latest informations.



Got any questions?
Feel free to message us or chat with us via the live chat on our website, a member of our support team will be glad to help you out!


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated. [no signup required]
Post by: shaw1 on September 29, 2019, 08:44:32 PM
OP updated with latest informations.



Got any questions?
Feel free to message us or chat with us via the live chat on our website, a member of our support team will be glad to help you out!

My question is the same as Felicita's.

Will you be adding a method for sending funds, rather than just receiving?
It would add a level of complexity, but it would make things much more functional for a lot of people.

As it is, your service can only be used for merchant tools. I've used payment providers as micro wallets before though, and as such, cannot currently use your service.

Apart from that, your service looks quite sharp, and professional.
Just think about my suggestion. :)


Title: Re: [ANN] CryptAPI.io - Cryptocurrency payments, uncomplicated. [no signup required]
Post by: CryptAPI-MKTG on September 30, 2019, 11:09:52 AM
My question is the same as Felicita's.

Will you be adding a method for sending funds, rather than just receiving?
It would add a level of complexity, but it would make things much more functional for a lot of people.

As it is, your service can only be used for merchant tools. I've used payment providers as micro wallets before though, and as such, cannot currently use your service.

Apart from that, your service looks quite sharp, and professional.
Just think about my suggestion. :)

You mean, being a wallet of sorts?


Title: Re: ⚡ CryptAPI.io ⚡ Multi-currency, no signup, no API keys, immediate settlement 🔥
Post by: CryptAPI-MKTG on October 02, 2019, 06:18:40 PM
Multi-address payments

Want to send commissions directly to several addresses?
Need to split your earnings?
We got you covered!  ;)

Check our latest blog post (https://cryptapi.io/blog/post/12/) for more information!


In order to deploy this new feature, we will perform a scheduled maintenance on 07/10/2019 16:00 UTC



Title: Re: ⚡ CryptAPI.io ⚡ Multi-currency, no signup, no API keys, immediate settlement 🔥
Post by: CryptAPI-MKTG on October 08, 2019, 09:56:03 PM
Multi-address payments are LIVE!

We have deployed our multi-address payments yesterday, we've been monitoring our service closely and we see that our users are starting to use it already!

Want to process automatic comissions hassle-free? Check our detailed blog post (https://cryptapi.io/blog/post/13/multi-address-payments-released/) about it!

If you have any suggestion or question, please let us know.



Title: Re: ⚡ CryptAPI.io ⚡ Now with automatic multi-address payments! 🔥
Post by: CryptAPI-MKTG on October 11, 2019, 01:15:40 PM
PHP library released!

Starting today, we have an official PHP library, with support for Composer.

More info (https://cryptapi.io/blog/post/14/php-library-released/)



Title: Re: ⚡ CryptAPI.io ⚡ Payment Gateway 💰 Now with automatic multi-address payments! 🔥
Post by: CryptAPI-MKTG on October 14, 2019, 05:22:11 PM
New info endpoint

All info you'll need for every cryptocurrency we support, on one, neat, JSON, endpoint.


➡️ More info (https://cryptapi.io/blog/post/15/new-info-endpoint/) ⬅️



Title: Re: ⚡ CryptAPI.io ⚡ Payment Gateway 💰 Now with automatic multi-address payments! 🔥
Post by: xbtx on October 14, 2019, 05:48:04 PM
New info endpoint

All info you'll need for every cryptocurrency we support, on one, neat, JSON, endpoint.


➡️ More info (https://cryptapi.io/blog/post/15/new-info-endpoint/) ⬅️


This is actually a pretty nice improvement!
I use your service in our platform, and we show the prices in USD, so we'd have to fetch the prices from other APIs (with daily caps) to convert to BTC and ETH.
With this new endpoint we can do it all from your API!

Great service, kudos!


Title: Re: ⚡ CryptAPI.io ⚡ Payment Gateway 💰 Now with automatic multi-address payments! 🔥
Post by: CryptAPI-MKTG on October 14, 2019, 05:50:00 PM
New info endpoint

All info you'll need for every cryptocurrency we support, on one, neat, JSON, endpoint.


➡️ More info (https://cryptapi.io/blog/post/15/new-info-endpoint/) ⬅️


This is actually a pretty nice improvement!
I use your service in our platform, and we show the prices in USD, so we'd have to fetch the prices from other APIs (with daily caps) to convert to BTC and ETH.
With this new endpoint we can do it all from your API!

Great service, kudos!

Thank you for your great feedback xbtx!
We're always looking on how to improve our system and make our customers happier!  :D

Best regards


Title: Re: ⚡ CryptAPI.io ⚡ Payment Gateway 💰 Now with automatic multi-address payments! 🔥
Post by: CryptAPI-MKTG on October 18, 2019, 09:22:40 PM
https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/WooCommerce_logo.svg/1200px-WooCommerce_logo.svg.png

WooCommerce Plugin Available!

We've released our long-awaited WooCommerce plugin!

You can grab it directly from WordPress repository: https://wordpress.org/plugins/cryptapi-payment-gateway-for-woocommerce/ (https://wordpress.org/plugins/cryptapi-payment-gateway-for-woocommerce/)

Or check our blog post about it (https://cryptapi.io/blog/post/16/woocommerce-plugin-available/)!

Plugins for the other, most common, e-commerce platforms, such as Magento, PrestaShop and OpenCart is under development and coming soon!



Title: Re: ⚡ CryptAPI.io ⚡ Payment Gateway 💰 Now with WooCommerce integration! 🔥
Post by: CryptAPI-MKTG on November 18, 2019, 02:51:51 PM
https://pbs.twimg.com/media/EJcflI-WkAEIEhO?format=png&name=large

OpenCart Extension Available!

Our OpenCart extension is available for you to use!

You can grab it directly from OpenCart marketplace: https://www.opencart.com/index.php?route=marketplace%2Fextension%2Finfo&extension_id=37960 (https://www.opencart.com/index.php?route=marketplace%2Fextension%2Finfo&extension_id=37960)

Extensions for Magento and PrestaShop are just awaiting formal verification and should be available soon!



Title: Re: ⚡ CryptAPI.io ⚡ Payment Gateway 💰 Now with WooCommerce integration! 🔥
Post by: CryptAPI-MKTG on November 25, 2019, 11:55:36 AM
Magento Extension Available!

Our Magento extension has been approved and is ready to use!

You can download it directly from Magento marketplace: https://marketplace.magento.com/cryptapi-cryptapi.html (https://marketplace.magento.com/cryptapi-cryptapi.html)


In other news:

  • PrestaShop extension should be available soon!
  • We have performed an infrastructure upgrade last Friday to improve performance, reliability and security.
    This will allow us to provide you with a better service and add more features in the near future! (stay tuned)



Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 WooCommerce, Magento & OpenCart plugins 🔥
Post by: CryptAPI-MKTG on December 02, 2019, 07:20:30 PM
https://cryptapi.io/media/posts/10047391.png


Improvement to our address generation API

New optional parameter on address generation lets you set a confirmation target for your payments!

⬇️ More info ⬇️
https://cryptapi.io/blog/post/24/confirmation-target-parameter/


Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 WooCommerce, Magento & OpenCart plugins 🔥
Post by: tinyteapot on December 03, 2019, 08:43:44 AM
Your api transactions fees might reduce your success rate based on the coins you are offering at the moment because there are some services that deliver such transactions at cheaper rates.

You will however have a breakthrough if you can provide similar services for tokens like all erc20 tokens and you will charge ethereum per transactions (think outside the box)

Good luck.


Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 WooCommerce, Magento & OpenCart plugins 🔥
Post by: CryptAPI-MKTG on December 05, 2019, 04:14:40 PM
Your api transactions fees might reduce your success rate based on the coins you are offering at the moment because there are some services that deliver such transactions at cheaper rates.

You will however have a breakthrough if you can provide similar services for tokens like all erc20 tokens and you will charge ethereum per transactions (think outside the box)

Good luck.

Thank you for your suggestions!

We are indeed working on implementing some other currencies, namely USDT and ERC-20 tokens.

We are also developing a white-label solution and affiliation program, along with fee reduction program based on volumes (similar to how exchanges operate).

Best regards and thank you!


Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 WooCommerce, Magento & OpenCart plugins 🔥
Post by: CryptAPI-MKTG on December 12, 2019, 12:31:56 PM
https://cryptapi.io/media/posts/discounts2.png


Volume-based Fee Discount

We are working on a tiered fee system, which will go from the current 1%, down to 0.25%, depending on 30-day volumes!

Soon we will disclose the actual tiers, stay tuned!

More info: https://cryptapi.io/blog/post/25/volume-based-fee-discount/



Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 WooCommerce, Magento & OpenCart plugins 🔥
Post by: CryptAPI-MKTG on December 19, 2019, 05:40:44 PM
https://cryptapi.io/media/posts/01c5ca27c61.jpg (https://cryptapi.io/blog/post/26/christmas-has-arrived-early/)

In 2019 we worked hard to make your cryptocurrency payments easier, faster and more secure, and, now cheaper!

Today we have deployed our new fee scheme, that allows our customers to enjoy cheaper payments, down to just 0.25% fee!
Starting today, we have a new fee tiering system, based on 30-day volumes.

All the new fee tiers are posted on the original post and on our Fee Page (https://cryptapi.io/pricing/)

We have saved this Christmas gift for you and you can start using it right away!

We would also like to thank all our customers for this amazing year and wish you all a Merry Christmas (with many coins in your wallet) and a Happy New Year!


Happy 2020!



Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 0.25% Fee 🔥 E-commerce plugins 💱
Post by: CryptAPI-MKTG on March 29, 2020, 01:56:23 AM
https://cryptapi.io/media/posts/pngwave.png


ERC-20 Tokens, USDT and ETH Internal Transactions now supported!

We are very pleased to announce that we now support ERC-20 Tokens!
We will start a weekly poll that you guys can vote on which ERC-20 tokens to add!

Also, USDT (both OMNI and ERC-20) has been added to our platform and you can start using it right now!

From now on ETH Internal Transactions (triggered by smart contracts) are also supported!
This was one of the most common requests we had and we are very happy to finally support this kind of transactions.

⬇️ More info ⬇️
https://cryptapi.io/blog/post/27/erc-20-token-and-ethereum-internal-transaction-support/





Last, but certainly not least, starting today
we will be donating 10% of our BTC fees to the Italian Red Cross
to help with the COVID-19 pandemic.

More details on this tomorrow


Best regards,
CryptAPI team



Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 0.25% Fee 🔥 E-commerce plugins 💱
Post by: CryptAPI-MKTG on March 29, 2020, 02:55:35 PM
https://cryptapi.io/media/posts/covid_logo.png


COVID-19 HelperBit Initiative

To help with the current COVID-19 pandemic, CryptAPI has decided to donate 10% of our fees on BTC transactions to the Italian Red Cross's campaign on HelperBit.

⬇️ More info ⬇️
https://cryptapi.io/blog/post/29/covid-19-helperbit-initiative/


Best regards,
CryptAPI team



Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 0.25% Fee 🔥 ERC-20 Token support 💲
Post by: Salmen on March 29, 2020, 04:02:22 PM
How dare you that Dogecoin is not part of your service  ;D
I guess the acceptance for Dogecoin is larger than the offered cryptocurrency BCH


Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 0.25% Fee 🔥 ERC-20 Token support 💲
Post by: CryptAPI-MKTG on March 29, 2020, 04:17:45 PM
How dare you that Dogecoin is not part of your service  ;D
I guess the acceptance for Dogecoin is larger than the offered cryptocurrency BCH

https://i.imgur.com/w6ViB1E.png

You're absolutely right, it's completely unacceptable that we still haven't added Dogecoin.

Please request Dogecoin to be added to our service and we'll take a look at it  ;)
https://forms.gle/G3sNFNwHk4ErDeaP9


Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 0.25% Fee 🔥 ERC-20 Token support 💲
Post by: CryptAPI-MKTG on April 02, 2020, 01:04:59 PM
https://cryptapi.io/media/posts/email-41-5121.png


New Feature: E-mail payment notifications

New API feature allows you to receive an e-mail notification whenever you receive a payment.

⬇️ More info ⬇️
https://cryptapi.io/blog/post/30/new-feature-e-mail-payment-notifications/





Title: Re: ⚡ CryptAPI.io ⚡ Payment Processor 💰 0.25% Fee 🔥 ERC-20 Token support 💲
Post by: CryptAPI-MKTG on June 12, 2020, 12:52:55 AM
https://cryptapi.io/media/posts/erc20.png


New ERC-20 Tokens available!

We have the pleasure to announce that, over the last couple of weeks, we have added support for some of the most used ERC-20 tokens!


Currently supported ERC-20 Tokens:

  • (USDT) USDT
  • (USDC) USDC
  • (BUSD) BUSD
  • (TUSD) TUSD
  • (PAX) PAX Standard
  • (BNB) Binance Coin
  • (LINK) ChainLink Token
  • (MKR) Maker
  • (CRO) Crypto.com Coin
  • (NEXO) NEXO
  • (BCZ) Becaz
  • ... more coming soon!


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: Salmen on February 02, 2022, 02:13:38 PM
I'm vouching for CryptAPI service. Been using them in one of my client's projects. It's an easy & hassle-free integration without the need to sign up.
Furthermore, the fee is lower than the competitors. Particularly, I like the new integrated coins, such as BSC coins.


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: CryptAPI-MKTG on February 07, 2022, 05:20:29 PM
Thanks a lot, Salmen!  :D
I'm vouching for CryptAPI service. Been using them in one of my client's projects. It's an easy & hassle-free integration without the need to sign up.
Furthermore, the fee is lower than the competitors. Particularly, I like the new integrated coins, such as BSC coins.



https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQFB1R-jH3NqvBT0aY-1xzy1sysZzQ8y5AZ_HJ0S3gLCezVfN6LuMP-2hHE263GM762GQ&usqp=CAU

We are pleased to announce that a new version of our Magento plugin has been released with minor bug fixes and several new features!


CHECK IT OUT (https://marketplace.magento.com/cryptapi-cryptapi.html)


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: CryptAPI-MKTG on October 02, 2022, 08:32:10 AM
https://i.imgur.com/3kK9gdG.jpg (https://cryptapi.io/)
NEW FEATURES ADDED TO ALL OUR PLUGINS
  • Exchange rates are fetched from CoinGecko
  • Additional supported currencies for automatic exchange rates are:
    (XAF) CFA Franc
    (RON) Romanian Leu
    (BGN) Bulgarian Lev
    (HUF) Hungarian Forint
    (CZK) Czech Koruna
    (PHP) Philippine Peso
    (PLN) Poland Zloti
    (UGX) Uganda Shillings
    (MXN) Mexican Peso
    (INR) Indian Rupee
    (HKD) Hong Kong Dollar
    (CNY) Chinese Yuan
    (BRL) Brazilian Real
    (DKK) Danish Krone
    (AED) UAE Dirham
    (JPY) Japanese Yen
    (CAD) Canadian Dollar
    (GBP) GB Pound
    (EUR) Euro
    (USD) US Dollar
  • Instant detection of any transaction, even if unconfirmed
  • Instant settlement
  • Order value in crypto automatically updated every X minutes (set by the merchant)
  • Multiple payments allowed: you can pay an order with multiple payments (less headache for your support team, whenever and order is "underpaid")
  • QR Code (to fetch the cripto address and/or the exact amount)

Start Accepting
Crypto Payments


Without registration, set-up CryptAPI seamlessly on the most popular Ecommerce platforms (https://cryptapi.io/ecommerce/)


MANAGE CRYPTO LIKE A PRO

https://i.imgur.com/plCTmWM.png


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: awex on October 08, 2022, 08:24:58 PM
The product seems pretty cool! What about bookkeeping/accounting? How it works when business use your service?


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: CryptAPI-MKTG on October 14, 2022, 12:12:15 PM
we are just a technology provider and you can fetch via API any transaction you make.
How to handle that data depends on the country and on the software used to handle the accounting part


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: awex on October 14, 2022, 08:15:18 PM
Seems legit. Basically, you don't need a license for this?


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: CryptAPI-MKTG on October 14, 2022, 09:25:36 PM
Since we do not hold, mix nor exchange our customer's funds, according to the legal experts we contacted we do not require a license, as we are considered just a software that automatizes the receiving of crypto payments


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: awex on November 07, 2022, 04:48:35 PM
Emm...what?


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: CryptAPI-MKTG on November 30, 2022, 04:07:32 PM
How can we help you?
Emm...what?


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 🔥 ERC20 / TRC20 / BEP20 / Polygon supported 🔥
Post by: CryptAPI-MKTG on November 30, 2022, 04:14:41 PM
CryptAPI now supports also Polygon network! ;D ;D ;D


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 💰 0.25% Fee 🔥 ERC20 / TRC20 / BEP20 supported 💲
Post by: awex on December 20, 2022, 12:43:35 PM

Sorry, I misunderstood you pushed the topic on top.


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 🔥 ERC20 / TRC20 / BEP20 / Polygon supported 🔥
Post by: CryptAPI-MKTG on July 27, 2023, 10:38:43 AM
this is a bump!


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 🔥 ERC20 / TRC20 / BEP20 / Polygon supported 🔥
Post by: logfiles on July 27, 2023, 10:05:24 PM
this is a bump!
Are you affiliated to these guys? - https://bitcointalk.org/index.php?topic=5461194

Looking at their ANN, I just realized almost all the information provided there is a copy of yours except for the links
I mean, Look at this and compare with what's on your announcement
BlockBee is a multi-address, multi-cryptocurrency payment processor, with support for the most used cryptocurrencies.

BlockBee supports payments in many cryptocurrencies and ERC-20, TRC-20, BEP-20, Polygon tokens, directly to your crypto wallet, without any sign-ups, API keys or lengthy processes.

All you need is to provide your crypto address.  Shocked

Since 2018, your reliable payments provider  Cool

Features

01MULTI-CURRENCY INTEGRATION
02LOW FEES, DOWN TO 0.25% & NO HIDDEN COSTS
03SECURE, FAST AND INSTANT SETTLEMENTS
04PLUGINS, CUSTOM API, CHECKOUT, PAYOUTS AND MORE
05100% TRANSPARENCY & OPEN SOURCE
06PERSONAL ACCOUNT MANAGER & 24/7 SUPPORT

Products

01Shopping Cart Plug-ins: Get your e-commerce store up and running with BlockBee Payment Gateway in just minutes using our prebuilt plug-ins for all major platforms.
02APIs: Customize your clients' cryptocurrency experience by integrating BlockBee Payment Gateway API into your business.
03Checkout: Easily integrate the BlockBee Payment Gateway into your platform by utilizing our Checkout page.
04Payouts: Send mass payments effortlessly with BlockBee Payment Gateway by integrating our Payouts API, or by manually importing the desired addresses.
05POS: Expand your payment options and increase revenue with our POS App that allows you to easily accept cryptocurrencies in your offline business!

Full List of Supported Cryptocurrencies & Tokens https://blockbee.io/cryptocurrencies/

Can't find your favourite token or want to list your own? Message us on telegram https://t.me/blockbee_support

At BlockBee, our fees are completely straight-forward with no hidden costs, and all funds are sent immediately to your own wallet!


All our fees and minimums for each currency can be checked at our Pricing page https://blockbee.io/fees/
Our base fee starts at 1%, but can go down to 0.25% based on 30-day aggregated volumes  Shocked

For more info you can check our documentation https://docs.blockbee.io/ or contact us directly via our live chat https://blockbee.io/


Please confirm if your businesses are related.


Title: Re: ⚡ CryptAPI ⚡ Payment Gateway 🔥 ERC20 / TRC20 / BEP20 / Polygon supported 🔥
Post by: CryptAPI-MKTG on July 27, 2023, 10:53:22 PM
Are you affiliated to these guys? - https://bitcointalk.org/index.php?topic=5461194

Looking at their ANN, I just realized almost all the information provided there is a copy of yours except for the links
I mean, Look at this and compare with what's on your announcement

Please confirm if your businesses are related.

Hello

Yes, CryptAPI and BlockBee are related. BlockBee is based on CryptAPI, with the same team, but with extra features.

Here is our blog post (https://cryptapi.io/blog/post/72/announcing-blockbee/) about it.

About the copy-paste, you're correct, an early draft was published by mistake before the team had time to properly rewrite and review the whole text, we apologize about it.