Skip to main content
GET
/
api
/
v1
/
transfers
/
managed
/
integrations
Get integrations
curl --request GET \
  --url https://integration-api.meshconnect.com/api/v1/transfers/managed/integrations \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
import requests

url = "https://integration-api.meshconnect.com/api/v1/transfers/managed/integrations"

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/transfers/managed/integrations', 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/transfers/managed/integrations",
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/transfers/managed/integrations"

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/transfers/managed/integrations")
.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/transfers/managed/integrations")

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": {
    "integrations": [
      {
        "id": "00000000-0000-0000-0000-000000000000",
        "type": "robinhood",
        "networks": [
          {
            "supportedDevices": [
              "android",
              "ios",
              "web"
            ],
            "supportedTokens": [
              "USDC",
              "ETH"
            ],
            "nativeSymbol": "ETH",
            "id": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
            "name": "Ethereum",
            "chainId": "1",
            "logoUrl": "https://file-cdn.meshconnect.com/public/logos/networks/Ethereum.svg"
          },
          {
            "supportedDevices": [
              "web"
            ],
            "supportedTokens": [
              "MATIC",
              "ETH"
            ],
            "nativeSymbol": "MATIC",
            "id": "7436e9d0-ba42-4d2b-b4c0-8e4e606b2c12",
            "name": "Polygon",
            "chainId": "137",
            "logoUrl": "https://file-cdn.meshconnect.com/public/logos/networks/Polygon.svg"
          }
        ],
        "supportsOutgoingTransfers": true,
        "supportsIncomingTransfers": true
      }
    ]
  },
  "status": "ok",
  "message": "",
  "errorHash": "844500ab",
  "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