Skip to main content
GET
/
api
/
v1
/
status
Get integrations health 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>'
import requests

url = "https://integration-api.meshconnect.com/api/v1/status"

headers = {
"X-Client-Secret": "<api-key>",
"X-Client-Id": "<api-key>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {
method: 'GET',
headers: {'X-Client-Secret': '<api-key>', 'X-Client-Id': '<api-key>'}
};

fetch('https://integration-api.meshconnect.com/api/v1/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://integration-api.meshconnect.com/api/v1/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Client-Id: <api-key>",
"X-Client-Secret: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://integration-api.meshconnect.com/api/v1/status"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-Client-Secret", "<api-key>")
req.Header.Add("X-Client-Id", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://integration-api.meshconnect.com/api/v1/status")
.header("X-Client-Secret", "<api-key>")
.header("X-Client-Id", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://integration-api.meshconnect.com/api/v1/status")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-Client-Secret"] = '<api-key>'
request["X-Client-Id"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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": "34aeb688-decb-485f-9d80-b66466783394",
        "name": "MetaMask"
      }
    }
  ],
  "status": "ok",
  "message": "",
  "errorHash": "f585284a",
  "teamCode": "P4",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Mesh to get client Secret

X-Client-Id
string
header
required

Contact Mesh to get client Id

Response

OK

status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked,
unavailableForLegalReasons
message
string | null

A message generated by the API

displayMessage
string | null

User-friendly display message that can be presented to the end user

errorHash
string | null
read-only

An error grouping hash from string components and caller information. Used by bugsnag on FE for correct error grouping

teamCode
string | null
read-only

Opaque team code for error routing. Resolved from exception origin or caller file path via CODEOWNERS. Format: 2-character code (e.g., "7K", "M2"). Use for alerting/routing, not display.

errorType
string | null

Strictly-typed error type that is explaining the reason of an unsuccessful status of the operation. All possible error types are available in the documentation.

errorData
unknown
content
object[] | null