GET
/
api
/
v1
/
transfers
/
managed
/
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>'
{
  "content": {
    "integrations": [
      {
        "type": "robinhood",
        "networks": [
          {
            "supportedTokens": [
              "USDC",
              "ETH"
            ],
            "nativeSymbol": "ETH",
            "id": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
            "name": "Ethereum",
            "chainId": "1",
            "logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Ethereum.svg"
          },
          {
            "supportedTokens": [
              "MATIC",
              "ETH"
            ],
            "nativeSymbol": "MATIC",
            "id": "7436e9d0-ba42-4d2b-b4c0-8e4e606b2c12",
            "name": "Polygon",
            "chainId": "137",
            "logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Polygon.svg"
          }
        ],
        "supportsOutgoingTransfers": true,
        "supportsIncomingTransfers": true
      }
    ]
  },
  "status": "ok",
  "message": "",
  "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

200
application/json
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

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
any | null
content
object