Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Managed Transfers
Get networks
Get supported networks list.
Get the list of all networks supported by Mesh to perform transfers, including which tokens and integrations are supported.
GET
/
api
/
v1
/
transfers
/
managed
/
networks
Copy
Ask AI
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/transfers/managed/networks \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
Copy
Ask AI
{
"content": {
"networks": [
{
"networkType": "evm",
"tokens": [
{
"symbol": "ETH",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/ETH.svg"
},
{
"symbol": "USDC",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/USDC.svg"
},
{
"symbol": "USDT",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/USDT.svg"
}
],
"supportedBrokerTypes": [
"deFiWallet",
"robinhood",
"coinbase",
"kraken",
"binanceInternational",
"binanceUs"
],
"supportedTokens": [
"ETH",
"USDC",
"USDT"
],
"nativeSymbol": "ETH",
"id": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
"name": "Ethereum",
"chainId": "1",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Ethereum.svg"
}
]
},
"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/networks \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
Copy
Ask AI
{
"content": {
"networks": [
{
"networkType": "evm",
"tokens": [
{
"symbol": "ETH",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/ETH.svg"
},
{
"symbol": "USDC",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/USDC.svg"
},
{
"symbol": "USDT",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/USDT.svg"
}
],
"supportedBrokerTypes": [
"deFiWallet",
"robinhood",
"coinbase",
"kraken",
"binanceInternational",
"binanceUs"
],
"supportedTokens": [
"ETH",
"USDC",
"USDT"
],
"nativeSymbol": "ETH",
"id": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
"name": "Ethereum",
"chainId": "1",
"logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Ethereum.svg"
}
]
},
"status": "ok",
"message": "",
"errorType": ""
}
Assistant
Responses are generated using AI and may contain mistakes.