Currency
Returns All Supported Currency-Token Pairs
For the moment Koywe supports operations with the following local currencies [CLP, MXN, COP, PEN]
GET
/rest/currency-tokens
clientId
curl --request GET \
--url https://api-test.koywe.com/rest/currency-tokens
[
{
"_id": "6294cd18d2b5f912da43e678",
"decimals": "integer",
"limits": {
"max": "2000000",
"min": "2000"
},
"logo": "url.example.com/clp.svg",
"name": "Peso Chileno",
"symbol": "CLP",
"tokens": [
{
"_id": "6283b7f8c7ab3a52fd8a51fc",
"decimals": "18",
"logo": "url.example.com/bnb.svg",
"name": "Binance Coin",
"symbol": "BNB"
}
]
}
]
Query Parameters
clientId
string
Your company's unique Koywe identifier.
Response
200 - application/json
_id
string
decimals
integer
limits
object
logo
string
name
string
symbol
string
tokens
object[]
curl --request GET \
--url https://api-test.koywe.com/rest/currency-tokens
[
{
"_id": "6294cd18d2b5f912da43e678",
"decimals": "integer",
"limits": {
"max": "2000000",
"min": "2000"
},
"logo": "url.example.com/clp.svg",
"name": "Peso Chileno",
"symbol": "CLP",
"tokens": [
{
"_id": "6283b7f8c7ab3a52fd8a51fc",
"decimals": "18",
"logo": "url.example.com/bnb.svg",
"name": "Binance Coin",
"symbol": "BNB"
}
]
}
]