Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Managed Account Authentication
Get health status
Get the list of supported institutions and their health statuses.
GET
/
api
/
v1
/
status
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/status \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
{
"content": [
{
"type": "robinhood",
"name": "Robinhood",
"isUp": true,
"supportedProducts": [
"balance",
"holdings",
"identity",
"orders",
"transfers"
]
},
{
"type": "celsius",
"name": "Celsius",
"isUp": false,
"description": "Temporarily disabled",
"downTimeStart": 1655891444,
"supportedProducts": [
"balance",
"orders",
"transfers",
"holdings"
]
},
{
"type": "deFiWallet",
"name": "MetaMask",
"isUp": false,
"supportedProducts": [
"transfers",
"holdings"
],
"deFiWalletData": {
"id": "00000000-0000-0000-0000-000000000000",
"name": "MetaMask"
}
}
],
"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/status \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
{
"content": [
{
"type": "robinhood",
"name": "Robinhood",
"isUp": true,
"supportedProducts": [
"balance",
"holdings",
"identity",
"orders",
"transfers"
]
},
{
"type": "celsius",
"name": "Celsius",
"isUp": false,
"description": "Temporarily disabled",
"downTimeStart": 1655891444,
"supportedProducts": [
"balance",
"orders",
"transfers",
"holdings"
]
},
{
"type": "deFiWallet",
"name": "MetaMask",
"isUp": false,
"supportedProducts": [
"transfers",
"holdings"
],
"deFiWalletData": {
"id": "00000000-0000-0000-0000-000000000000",
"name": "MetaMask"
}
}
],
"status": "ok",
"message": "",
"errorType": ""
}
Assistant
Responses are generated using AI and may contain mistakes.