List Supported Coins

Dive into the specifics of each API endpoint by checking out our complete documentation.

All about Coins

List supported coins

POST /coins/list

Get all supported coins (include tokens) with network options.

Following the active crypto coin list will prevent you from getting negative results in your requests. Many coins and networks may be subject to maintenance from time to time, and your withdrawal requests may be rejected due to balance problems. Also, please update the coin list frequently to add new coins to your withdraw page.

Get all supported coins with networks

post
/coins
Authorizations
AuthorizationstringRequired
Body
merchant_idstringRequired
Responses
200

successful operation

application/json
post
/coins
POST /api/merchant/coins HTTP/1.1
Host: kriptopay.com
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 18

"merchant_id=''"
[
  {
    "name": "Bitcoin",
    "short": "BTC",
    "is_active": true,
    "networks": [
      {
        "name": "Binance Smart Chain",
        "short": "BSC",
        "label": "BEP20",
        "tag_status": "DISABLED",
        "withdraw_enable": true
      }
    ]
  }
]

You can realize your requests by using the result returned in the SHORT parameter in the results in the list above. You can use the coin and network list when creating withdrawals.

Response Body

Name
Type
Description

name

string

Name of the crypto currency

short

string

Short name of crypto currency using in api requests.

is_active

boolean

Checks whether it is active in all operations

networks

object list

List of network object that coin has.

Network Object

Name
Type
Description

name

string

Name of the crypto network

short

string

Short name of network using in api requests

tag_status

enum

It symbolizes the status of the TAG field in the operations of this network.

withdraw_enable

boolean

Check withdraw status for this network

Responses

[
  {
    "name": "Bitcoin",
    "short": "BTC",
    "is_active": true,
    "networks": [
      {
        "name": "Binance Smart Chain",
        "short": "BSC",
        "label": "BEP20",
        "tag_status": "DISABLED",
        "withdraw_enable": true
      }
    ]
  }
]

Last updated