Coins

On this page, you can access the necessary information to use the direct API and list the crypto networks and tokens integrated into your system according to your own design.

Fetching the networks and tokens available for payment

The following information must be sent correctly and mandatorily. If any information is incorrect or all fields are sent empty, the system will not return an error; instead, it will automatically return all supported networks and coins.

ValueTypeDescription

merchant_id

string

Your Merchant ID

merchant_key

string

Your Merchant Key

merchant_salt

string

Your Merchant Salt

By making a GET request to the link below, you can instantly find out which networks and tokens are available for payment for your store. You can present this information to your users in a UI format to allow them to select tokens.

https://app.coinpays.io/shared/coins?merchant_key=&merchant_id=&merchant_salt=

The response to the request is in JSON format:

Successful response example:

[
  {
    "name": "AREA Coin",
    "code": "AREA",
    "image": "https://app.coinpays.io/assets/img/coins/areon.png",
    "network": "AREON",
    "minimum_payment": 15.33742331,
    "last_update": "2024-06-28 14:32:26"
  },
  {
    "name": "Bitcoin",
    "code": "BTCB",
    "image": "https://app.coinpays.io/assets/img/coins/bep20/btc.png",
    "network": "BEP-20",
    "minimum_payment": 0.00001629,
    "last_update": "2024-06-28 14:31:55"
  }
],
...

Last updated