Token
Returns Supported Coin-Token Pairs
Receives a token symbol to filter. For the moment Koywe supports operations with the following tokens [ETH, MATIC, BNB, BTC, USDC, DAI]
GET
/rest/token-currencies/{tokenSymbol}
tokenSymbol*
curl --request GET \
--url https://api-test.koywe.com/rest/token-currencies/{tokenSymbol}
{
"_id": "6303d71295ee10bace884ac4",
"currencies": [
{
"_id": "6294cd18d2b5f912da43e678",
"decimals": "integer",
"limits": {
"max": "2000000",
"min": "2000"
},
"logo": "url.example.com/clp.svg",
"name": "Peso Chileno",
"symbol": "CLP"
}
],
"decimals": "18",
"logo": "url.example.com/bnb.svg",
"name": "Binance Coin",
"symbol": "BNB"
}
Path Parameters
tokenSymbolrequired
string
Symbol associated with the token of choice.
Query Parameters
clientId
string
Your company's unique Koywe identifier.
Response
200 - application/json
_id
string
currencies
object[]
decimals
integer
logo
string
name
string
symbol
string
curl --request GET \
--url https://api-test.koywe.com/rest/token-currencies/{tokenSymbol}
{
"_id": "6303d71295ee10bace884ac4",
"currencies": [
{
"_id": "6294cd18d2b5f912da43e678",
"decimals": "integer",
"limits": {
"max": "2000000",
"min": "2000"
},
"logo": "url.example.com/clp.svg",
"name": "Peso Chileno",
"symbol": "CLP"
}
],
"decimals": "18",
"logo": "url.example.com/bnb.svg",
"name": "Binance Coin",
"symbol": "BNB"
}