API Reference

V1.8

  1. isReceivedAmount was added to the endpoint request for partners to define how the quote amount should be processed: with or without fees.
  2. amountReceived was added to the endpoint response to indicate the net amount in fiat for which the user will get crypto: amount the user actually spends minus total fees.

V1.7

  • The POST Request endpoint request was changed: since now, partner can pass a single cryptowalletaddress object or an array of objects to limit selection of cryptos on Paybis Widget exchange form and make payouts only to specified wallet addresses.

V1.6

  • The new GET SumSub shared token endpoint was added for the partners to retrieve SumSub shared access token for applicants that completed verification in Paybis Widget.
  • Verification Status Update webhook was added for the partners to get notified on their customers' verification status updates.

V1.5

GET Currency pairs endpoint response was extended to return meta object with the following parameters:

  • customer's default fiat currency defined by geolocation
  • meta data for all supported cryptocurrencies: icon image, destination tag/memo requirements, cryptocurrency display name.

Response example v1.4 (Old):

{
  "data": [
    {
      "name": "credit-card",
      "displayName": "Credit/Debit Card",
      "pairs": [
        {
          "from": "EUR",
          "to": [
            {
              "currency": "BTC",
              "currencyCode": "BTC"
            }
          ]
        }
      ]
    }
  ]
}

Response example v1.5 (New):

{
  "data": [
    {
      "displayName": "Credit/Debit Card",
      "name": "credit-card",
      "pairs": [
        {
          "from": "USD",
          "to": [
            {
              "currency": "BNB",
              "currencyCode": "BNBSC"
            },
            {
              "currency": "ETH",
              "currencyCode": "ETH"
            }
          ]
        },
        {
          "from": "EUR",
          "to": [
            {
              "currency": "USDT",
              "currencyCode": "USDT"
            },
            {
              "currency": "BTC",
              "currencyCode": "BTC"
            }
          ]
        }
      ]
    }
  ],
  "meta": {
    "defaultCurrency": "USD",
    "currencies": [
      {
        "code": "USD",
        "name": "United States Dollar",
        "image": "https://google.lv/image/usd.png",
        "hasDestinationTag": false
      },
      {
        "code": "BTC",
        "name": "Bitcoin",
        "image": "https://google.lv/image/btc.png",
        "hasDestinationTag": false
      },
      {
        "code": "BNB",
        "name": "Binance Coin",
        "image": "https://google.lv/image/bnb.png",
        "hasDestinationTag": true
      }
    ]
  }
}