GET
/
api
/
v1
/
transfers
/
managed
/
mesh
curl --request GET \
  --url https://integration-api.getfront.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,
        "amountInFiatCurrencyCode": "USD",
        "amount": 10.123,
        "symbol": "ETH",
        "networkName": "Polygon",
        "createdTimestamp": 1653211113,
        "from": {
          "id": "8e25acb5-a9e2-4d00-8772-a255f010a2a9",
          "type": "robinhood",
          "name": "Robinhood"
        },
        "hash": "0x77f3a280aa5cfe956a5759c24cf774325504070b32b4159...",
        "gasFee": {
          "fee": 0.0001,
          "feeCurrency": "MATIC",
          "feeInFiat": 0.1
        },
        "withdrawalFee": {
          "fee": 0.0001,
          "feeCurrency": "ETH",
          "feeInFiat": 0.1
        },
        "processingFee": {
          "fee": 0.0001,
          "feeCurrency": "ETH",
          "feeInFiat": 0.1
        },
        "executedTimestamp": 1707462614
      },
      {
        "id": "12345678-a9e2-4d00-8772-a255f010a2a9",
        "clientTransactionId": "123456",
        "institutionTransactionId": "456789",
        "userId": "123456798",
        "status": "failed",
        "amountInFiat": 10.3,
        "amountInFiatCurrencyCode": "USD",
        "amount": 0.123,
        "symbol": "ETH",
        "networkName": "Polygon",
        "createdTimestamp": 1653211113,
        "from": {
          "id": "8e25acb5-a9e2-4d00-8772-a255f010a2a9",
          "type": "deFiWallet",
          "name": "MetaMask"
        },
        "hash": "0x77f3a280aa5cfe956a5759c24cf774325504070b32b4159..."
      }
    ],
    "total": 10
  },
  "status": "ok",
  "message": "",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Front to get client Secret

X-Client-Id
string
header
required

Contact Front 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.

UserId
string

Client's user identifier.

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
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
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.

content
object