Get available integrations
Returns a list of integrations with details including the integration ID, name, type, DeFi wallet provider ID, and categories.
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/integrations \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'import requests
url = "https://integration-api.meshconnect.com/api/v1/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/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/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/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/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/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": {
"items": [
{
"id": "47624467-e52e-4938-a41a-7926b6c27acf",
"name": "Coinbase",
"type": "coinbase",
"style": {
"fieldActiveLight": "0052FF",
"buttonPrimaryLight": "0052FF",
"buttonHoverLight": "014CEC",
"buttonTextLight": "FFFFFF",
"buttonTextHoverLight": "FFFFFF",
"fieldActiveDark": "578BFA",
"buttonPrimaryDark": "578BFA",
"buttonHoverDark": "507FE5",
"buttonTextDark": "0A0B0D",
"buttonTextHoverDark": "0A0B0D"
},
"logo": {
"logoLightUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Light.svg",
"logoDarkUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Dark.svg",
"logoWhiteUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_White.svg",
"logoBlackUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Black.svg",
"logoColorUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Color.svg",
"iconLightUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Light.svg",
"iconDarkUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Dark.svg",
"iconWhiteUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_White.svg",
"iconBlackUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Black.svg",
"iconColorUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Color.svg",
"base64Logo": "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAA1VBMVEUAAAAAgP8AVf8AM/8AVdUAROgAQ+kAROkAROkAQ+oAQuoAROoAQ+gAROkAQ+kAQ+kAROkAQ+kAQ+kAROkAQugAQ+kAQ+kAROkAQ+kAQ+kAQ+kAQ+kAQ+kXVesOTuoAQ+kBROkERukFR+kNTeoOTeoUUusZVeshW+wpYe0qYu0uZe0yaO00ae05be5fifFgivGMqvWSr/amvfeqwPi7zfnE0/rO2/vU3/vY4vzc5fze5/zh6fzi6vzl7P3m7f3p7/3u8v7x9f73+f75+/76+//+/v////94Z10/AAAAH3RSTlMAAgMFBk9QUlNUVVZXiImKi4ykptfY2dvc3fHz9Pr8ZrpFhQAAAAFiS0dERhe6+e0AAADPSURBVBgZncHXVsJAFAXQExM6UhJCwEGPYsfesKCiAvf/P8m5swIhPLI3thbUo3gwiKNagJxyn6leCZmdNte0PCy1mdNAqswNRThBn+r0/n3+/XRAKwmg6lTnnyI/s2c6VaiI6kVerzg8phNCdWmNZHHBlRjK0LqVCTMGytC6kwkze1BdWteyGHElhopoHY7l7YZHJ3RCqBrV5VTk9288pKpABT2qs4eP2dfjPq3Eh1PihgJSLebsYslrck3DQ6aYMJUUkONXw44xnbDiY1v/vNIqVzlyMewAAAAASUVORK5CYII="
},
"cryptoTransfersSupported": true,
"brokerGroup": "coinbase"
},
{
"id": "3d8f5c31-9fc0-4b61-bdfb-00fb18cbb9ad",
"name": "CoinCircle",
"type": "deFiWallet",
"deFiWalletProviderId": "36d8d9c0c7fe2957149ce8e878f3a01...",
"categories": [
"deFiWallet"
],
"style": {
"fieldActiveLight": "0052FF",
"buttonPrimaryLight": "0052FF",
"buttonHoverLight": "014CEC",
"buttonTextLight": "FFFFFF",
"buttonTextHoverLight": "FFFFFF",
"fieldActiveDark": "578BFA",
"buttonPrimaryDark": "578BFA",
"buttonHoverDark": "507FE5",
"buttonTextDark": "0A0B0D",
"buttonTextHoverDark": "0A0B0D"
},
"logo": {
"logoColorUrl": "https://file-cdn.meshconnect.com/public/logos/CoinCircle_Logo_Color.svg",
"iconColorUrl": "https://file-cdn.meshconnect.com/public/logos/CoinCircle_Icon_Color.svg"
},
"cryptoTransfersSupported": true,
"brokerGroup": "none"
}
]
},
"status": "ok",
"message": "",
"errorHash": "d48f676e",
"teamCode": "P4",
"errorType": ""
}Authorizations
Contact Mesh to get client Secret
Contact Mesh to get client Id
Response
OK
ok, serverFailure, permissionDenied, badRequest, notFound, conflict, tooManyRequest, locked, unavailableForLegalReasons A message generated by the API
User-friendly display message that can be presented to the end user
An error grouping hash from string components and caller information. Used by bugsnag on FE for correct error grouping
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.
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.
Integration response.
Show child attributes
Show child attributes
Was this page helpful?
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/integrations \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'import requests
url = "https://integration-api.meshconnect.com/api/v1/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/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/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/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/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/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": {
"items": [
{
"id": "47624467-e52e-4938-a41a-7926b6c27acf",
"name": "Coinbase",
"type": "coinbase",
"style": {
"fieldActiveLight": "0052FF",
"buttonPrimaryLight": "0052FF",
"buttonHoverLight": "014CEC",
"buttonTextLight": "FFFFFF",
"buttonTextHoverLight": "FFFFFF",
"fieldActiveDark": "578BFA",
"buttonPrimaryDark": "578BFA",
"buttonHoverDark": "507FE5",
"buttonTextDark": "0A0B0D",
"buttonTextHoverDark": "0A0B0D"
},
"logo": {
"logoLightUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Light.svg",
"logoDarkUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Dark.svg",
"logoWhiteUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_White.svg",
"logoBlackUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Black.svg",
"logoColorUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Logo_Color.svg",
"iconLightUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Light.svg",
"iconDarkUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Dark.svg",
"iconWhiteUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_White.svg",
"iconBlackUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Black.svg",
"iconColorUrl": "https://file-cdn.meshconnect.com/public/logos/Coinbase_Icon_Color.svg",
"base64Logo": "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAA1VBMVEUAAAAAgP8AVf8AM/8AVdUAROgAQ+kAROkAROkAQ+oAQuoAROoAQ+gAROkAQ+kAQ+kAROkAQ+kAQ+kAROkAQugAQ+kAQ+kAROkAQ+kAQ+kAQ+kAQ+kAQ+kXVesOTuoAQ+kBROkERukFR+kNTeoOTeoUUusZVeshW+wpYe0qYu0uZe0yaO00ae05be5fifFgivGMqvWSr/amvfeqwPi7zfnE0/rO2/vU3/vY4vzc5fze5/zh6fzi6vzl7P3m7f3p7/3u8v7x9f73+f75+/76+//+/v////94Z10/AAAAH3RSTlMAAgMFBk9QUlNUVVZXiImKi4ykptfY2dvc3fHz9Pr8ZrpFhQAAAAFiS0dERhe6+e0AAADPSURBVBgZncHXVsJAFAXQExM6UhJCwEGPYsfesKCiAvf/P8m5swIhPLI3thbUo3gwiKNagJxyn6leCZmdNte0PCy1mdNAqswNRThBn+r0/n3+/XRAKwmg6lTnnyI/s2c6VaiI6kVerzg8phNCdWmNZHHBlRjK0LqVCTMGytC6kwkze1BdWteyGHElhopoHY7l7YZHJ3RCqBrV5VTk9288pKpABT2qs4eP2dfjPq3Eh1PihgJSLebsYslrck3DQ6aYMJUUkONXw44xnbDiY1v/vNIqVzlyMewAAAAASUVORK5CYII="
},
"cryptoTransfersSupported": true,
"brokerGroup": "coinbase"
},
{
"id": "3d8f5c31-9fc0-4b61-bdfb-00fb18cbb9ad",
"name": "CoinCircle",
"type": "deFiWallet",
"deFiWalletProviderId": "36d8d9c0c7fe2957149ce8e878f3a01...",
"categories": [
"deFiWallet"
],
"style": {
"fieldActiveLight": "0052FF",
"buttonPrimaryLight": "0052FF",
"buttonHoverLight": "014CEC",
"buttonTextLight": "FFFFFF",
"buttonTextHoverLight": "FFFFFF",
"fieldActiveDark": "578BFA",
"buttonPrimaryDark": "578BFA",
"buttonHoverDark": "507FE5",
"buttonTextDark": "0A0B0D",
"buttonTextHoverDark": "0A0B0D"
},
"logo": {
"logoColorUrl": "https://file-cdn.meshconnect.com/public/logos/CoinCircle_Logo_Color.svg",
"iconColorUrl": "https://file-cdn.meshconnect.com/public/logos/CoinCircle_Icon_Color.svg"
},
"cryptoTransfersSupported": true,
"brokerGroup": "none"
}
]
},
"status": "ok",
"message": "",
"errorHash": "d48f676e",
"teamCode": "P4",
"errorType": ""
}