Get available payment solution type (GET)

REQUEST

The query is an HTTP GET request where your provided api key will be used as an http header.

API-KEY (Use the api key we’ve sent to you here).


RESPONSE

Our service will return a JSON object.

chevron-rightFor errorshashtag
  • 50001 : API-KEY required

  • 50007 : Invalid API-KEY

Example :

{ “errorCode”: 50001, “errorMessage” : “invalid API-KEY” }
chevron-rightSuccess responsehashtag

{
    "list": [
        {
            "value": "USDT_polygon",
            "name": "Tether USD (Polygon)",
            "url_icon_crypto": "https://usdc.nonstopay.net/icons_currencies/Tether_USD_(USDT).svg",
            "url_icon_network": "https://usdc.nonstopay.net/icons_currencies/Polygon_(Polygon).svg"
        },
        {
            "value": "USDT_tron",
            "name": "Tether USD (Tron)",
            "url_icon_crypto": "https://usdc.nonstopay.net/icons_currencies/Tether_USD_(USDT).svg",
            "url_icon_network": "https://usdc.nonstopay.net/icons_currencies/Tron_(TRC20).svg"
        },
        {
            "value": "USDT_bsc",
            "name": "Tether USD (Binance Smart Chain)",
            "url_icon_crypto": "https://usdc.nonstopay.net/icons_currencies/Tether_USD_(USDT).svg",
            "url_icon_network": "https://usdc.nonstopay.net/icons_currencies/Binance_Smart_Chain_(BEP20).svg"
        },
        ...
 }
        

Example :


SAMPLE REQUEST CODE

Last updated