v1

latestOpenAPI 3.0.02026-07-26103425558.9 KB
Crypto Transfer

List all crypto transfers

Returns a list of crypto transfers associated with a user under your organization. The crypto transfers are returned sorted by creation date, with the most recent crypto transfers appearing first.

get/v2/wallets/transfers

Query parameters

userIdstring

The user ID.

limitstring

default to 10, maximum to 100

createdBeforestring date

ISO format: YYYY-MM-DD

createdAfterstring date

ISO format: YYYY-MM-DD

Response

Success

countinteger
nextCursorstring

The createdAt timestamp of the last record in the current page. Pass this as createdBefore in the next request to retrieve the next page of results.

Example response

{
  "count": 1,
  "records": [
    {
      "transferType": "WALLET.TRANSFER",
      "transferDetails": {
        "id": "006737ca-42d5-4780-b3c2-aeb63279c591",
        "requestId": "d0d62bec-2623-4f61-afda-148d6a8e1009",
        "createdAt": "2025-02-03T16:11:36.654+00:00",
        "updatedAt": "2025-02-03T16:12:41.503+00:00",
        "chain": "POLYGON_MAINNET",
        "currency": "usdc",
        "contractAddress": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
        "status": "CREATED",
        "failedReason": "",
        "source": {
          "userId": "aec66b02-4f3f-471c-839a-94820b36abb2",
          "walletAddress": "0xA25641cB6056C371CB65F28aC02450c9206e0fAA",
          "walletType": "INDIVIDUAL",
          "user": {
            "email": "samuelyoon0@gmail.com",
            "lastName": "Yoon",
            "firstName": "Samuel",
            "businessName": null
          }
        },
        "destination": {
          "userId": "aec66b02-4f3f-471c-839a-94820b36abb2",
          "walletType": "INDIVIDUAL",
          "walletAddress": "0xA25641cB6056C371CB65F28aC02450c9206e0fAA",
          "user": {
            "email": "samuelyoon0@gmail.com",
            "lastName": "Yoon",
            "firstName": "Samuel",
            "businessName": null
          }
        },
        "amount": 0.01,
        "amountIncludeDeveloperFee": 0.01,
        "receipt": {
          "transactionHash": "0x5784890f9efd0160e9401439a5cf2aa5350580ecf48f9ca2af617338ae089e53",
          "userOpHash": "0xef7bdb071b1fcfb5df629bd4d27ffa6dc32d0a5df676f26fb8c25311df1185ac"
        },
        "developerFee": {
          "feeId": "9b354c37-d20d-4d94-bcd8-c852353ca406",
          "feeType": "FIX",
          "feeAmount": 0.5,
          "feePercent": 0,
          "status": "CREATED",
          "transactionHash": null,
          "failedReason": null
        }
      }
    }
  ],
  "nextCursor": "2025-02-03T16:11:36.654+00:00"
}