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
Copy
Ask AI
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>'
Copy
Ask AI
{
"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
.
Copy
Ask AI
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>'
Copy
Ask AI
{
"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": ""
}
Assistant
Responses are generated using AI and may contain mistakes.