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.
successful operation
Invalid merchant ID or Apikey combination
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
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
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
}
]
}
]{
"success": false,
"type": "client_error",
"code": "authentication_failed",
"error": "Invalid merchant ID or Apikey combination"
}{
"success": false,
"type": "client_error",
"code": "method_not_allowed",
"error": "Method \"POST\" not allowed."
}Last updated