Send a Payout
Request supported currencies and networks You can use the API to learn which currencies and payment networks are available.
Request available blockchain networks
Call the available networks endpoint to retrieve list of all supported blockchain networks. Returns an array with network key and display name.
Shell
curl -H "Authorization: Bearer ${ YOUR_API_KEY }" \
-X GET https://api.tesser.xyz/v1/networks
Response
JSON
{
"data" : [
{
"key" : "ETHEREUM" ,
"name" : "Ethereum"
},
{
"key" : "POLYGON" ,
"name" : "Polygon"
},
{
"key" : "STELLAR" ,
"name" : "Stellar"
},
{
"key" : "SOLANA" ,
"name" : "Solana"
}
]
}
Request available currencies and networks
Call the available currencies endpoint to receive a list of supported currencies (crypto and fiat) and which networks they are supported on. Returns an array with currency name, key, decimals, and network information.
curl -H "Authorization: Bearer ${ YOUR_API_KEY }" \
-X GET https://api.tesser.xyz/v1/currencies
Response
{
"data" : [
{
"name" : "US Dollar" ,
"key" : "USD" ,
"decimals" : 2 ,
"chain" : null
},
{
"name" : "Circle USD" ,
"key" : "USDC" ,
"decimals" : 6 ,
"chain" : "ETHEREUM"
},
{
"name" : "Tether USD" ,
"key" : "USDT" ,
"decimals" : 6 ,
"chain" : "ETHEREUM"
},
{
"name" : "Circle USD" ,
"key" : "USDC" ,
"decimals" : 6 ,
"chain" : "POLYGON"
},
{
"name" : "Tether USD" ,
"key" : "USDT" ,
"decimals" : 6 ,
"chain" : "POLYGON"
},
{
"name" : "Circle USD" ,
"key" : "USDC" ,
"decimals" : 6 ,
"chain" : "STELLAR"
},
{
"name" : "Tether USD" ,
"key" : "USDT" ,
"decimals" : 6 ,
"chain" : "STELLAR"
},
{
"name" : "Circle USD" ,
"key" : "USDC" ,
"decimals" : 6 ,
"chain" : "SOLANA"
},
{
"name" : "Tether USD" ,
"key" : "USDT" ,
"decimals" : 6 ,
"chain" : "SOLANA"
}
]
}
Last modified on February 24, 2026