GET
/
api
/
v1
/
transfers
/
managed
/
mesh
curl --request GET \
  --url https://integration-api.meshconnect.com/api/v1/transfers/managed/mesh \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "content": {
    "items": [
      {
        "id": "8e25acb5-a9e2-4d00-8772-a255f010a2a9",
        "clientTransactionId": "123456",
        "institutionTransactionId": "456789",
        "userId": "123456798",
        "status": "succeeded",
        "amountInFiat": 1000.3,
        "amountToReceiveInFiat": 0,
        "amountInFiatCurrencyCode": "USD",
        "amount": 10.123,
        "amountToReceive": 0,
        "symbol": "WETH",
        "tokenAddress": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
        "networkName": "Polygon",
        "networkId": "00000000-0000-0000-0000-000000000000",
        "networkLogoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Polygon.svg",
        "createdTimestamp": 1653211113,
        "from": {
          "logoUrl": "https://logo.com/logo.jpg",
          "id": "8e25acb5-a9e2-4d00-8772-a255f010a2a9",
          "type": "robinhood",
          "name": "Robinhood"
        },
        "hash": "0x77f3a280aa5cfe956a5759c24cf774325504070b32b4159...",
        "infoUrl": "https://polygonscan.com/tx/0x5b0ac59e43b63f2985d78994b6270d747f1019777201ca18ebb36ad1e1a8693e",
        "gasFee": {
          "fee": 0.0001,
          "feeCurrency": "MATIC",
          "feeInFiat": 0.1
        },
        "withdrawalFee": {
          "fee": 0.0001,
          "feeCurrency": "WETH",
          "feeInFiat": 0.1
        },
        "processingFee": {
          "fee": 0.0001,
          "feeCurrency": "WETH",
          "feeInFiat": 0.1
        },
        "executedTimestamp": 1707462614,
        "transferType": "payment",
        "isFeeIncluded": false,
        "sourceAmount": 10.122,
        "destinationAmount": 10,
        "totalFeesAmountInFiat": 0.5,
        "totalTransactionAmountInFiat": 1000.5,
        "fundingMethods": [
          {
            "type": "cryptocurrencyConversion",
            "amount": 2,
            "amountInFiat": 20,
            "toSymbol": "WETH",
            "fromAmount": 1,
            "fromSymbol": "BTC",
            "fee": {
              "fee": 0.0001,
              "feeCurrency": "ETH",
              "feeInFiat": 0.1
            }
          },
          {
            "type": "paymentMethodDepositUsage",
            "amount": 3,
            "amountInFiat": 30,
            "toSymbol": "WETH",
            "fromAmount": 1,
            "fromSymbol": "USD",
            "paymentMethodType": "bankAccount",
            "fee": {
              "fee": 0.0001,
              "feeCurrency": "USD",
              "feeInFiat": 0.1
            }
          },
          {
            "type": "existingCryptocurrencyBalance",
            "amount": 5,
            "amountInFiat": 50,
            "toSymbol": "WETH",
            "fromAmount": 5,
            "fromSymbol": "ETH"
          }
        ]
      },
      {
        "id": "12345678-a9e2-4d00-8772-a255f010a2a9",
        "clientTransactionId": "123456",
        "institutionTransactionId": "456789",
        "userId": "123456798",
        "status": "failed",
        "amountInFiat": 10.3,
        "amountToReceiveInFiat": 0,
        "amountInFiatCurrencyCode": "USD",
        "amount": 0.123,
        "amountToReceive": 0,
        "symbol": "WETH",
        "tokenAddress": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
        "networkName": "Polygon",
        "networkId": "00000000-0000-0000-0000-000000000000",
        "createdTimestamp": 1653211113,
        "from": {
          "logoUrl": "https://logo.com/logo.jpg",
          "id": "8e25acb5-a9e2-4d00-8772-a255f010a2a9",
          "type": "deFiWallet",
          "name": "MetaMask"
        },
        "hash": "0x77f3a280aa5cfe956a5759c24cf774325504070b32b4159...",
        "isFeeIncluded": false,
        "totalFeesAmountInFiat": 0,
        "totalTransactionAmountInFiat": 10.3,
        "fundingMethods": []
      }
    ],
    "total": 10
  },
  "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

Query Parameters

Count
integer

Number of items to return. Default 10, maximum - 100.

Offset
integer

Number of items to skip.

Id
string

Mesh transfer identifier.

ClientTransactionId
string

Client transaction identifier.

Maximum length: 128
UserId
string

Client's user identifier.

Maximum length: 50
IntegrationIds
string[]

Transfered integration.

Statuses
enum<string>[]

Transfer statuses.

Available options:
pending,
succeeded,
failed
FromTimestamp
integer

Transfer created minimum timestamp.

ToTimestamp
integer

Transfer created maximum timestamp.

MinAmountInFiat
number

Minimum amount in fiat.

MaxAmountInFiat
number

Maximum amount in fiat.

OrderBy
enum<string>

Order by column.

Available options:
id,
clientTransferId,
userId,
fromType,
amountInFiat,
status,
createdTimestamp,
symbol,
networkName
Hash
string

Transfer hash.

SubClientId
string

Sub-client identifier.

DescendingOrder
boolean

Value indicating if ordering is descending.

Response

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