Managed Transfers
Get supported tokens list
Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Managed Transfers
Get supported tokens list
Get the list of all tokens supported by Mesh to perform transfers, including which networks and integrations are supported.
GET
/
api
/
v1
/
transfers
/
managed
/
tokens
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/transfers/managed/tokens \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
{
"content": {
"tokens": [
{
"token": "ADA",
"networks": [
{
"id": "f7a660cd-bac0-4ae8-8ddb-c54d321b55dc",
"name": "Cardano",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Cardano.svg"
}
],
"supportedIntegrations": [
"gemini",
"binanceInternational"
]
}
]
},
"status": "ok",
"message": "",
"errorType": ""
}
Authorizations
Contact Mesh to get client Secret
Contact Mesh to get client Id
Response
200 - application/json
OK
The response is of type object
.
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/transfers/managed/tokens \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
{
"content": {
"tokens": [
{
"token": "ADA",
"networks": [
{
"id": "f7a660cd-bac0-4ae8-8ddb-c54d321b55dc",
"name": "Cardano",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Cardano.svg"
}
],
"supportedIntegrations": [
"gemini",
"binanceInternational"
]
}
]
},
"status": "ok",
"message": "",
"errorType": ""
}