v1

latestOpenAPI 3.0.02026-07-26103425558.9 KB
Crypto Transfer

List all batch crypto transfers

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

get/v2/wallets/transfers/batches

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 required
nextCursorstring date-time required

Example response

{
  "count": 1,
  "records": [
    {
      "transferType": "WALLET.TRANSFER.BATCH",
      "transferDetails": {
        "id": "a671d42d-9417-4bb3-868e-06c868d0d4b8",
        "requestId": "d2189ddd-2d32-4a46-9421-d25ebf602e6c",
        "createdAt": "2025-04-05T14:01:09.785Z",
        "updatedAt": "2025-04-05T14:01:37.708Z",
        "chain": "POLYGON",
        "currency": "usdc",
        "contractAddress": "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582",
        "status": "COMPLETED",
        "failedReason": null,
        "source": {
          "userId": "a1f70737-3844-4782-a321-ad481108a8ec",
          "walletAddress": "0xAFD59de44048D33d964f720ec2Dec3465D8D887D",
          "walletType": "INDIVIDUAL"
        },
        "destination": {
          "batch": [
            {
              "amount": "0.01",
              "userId": "a1f70737-3844-4782-a321-ad481108a8ec"
            },
            {
              "amount": "0.01",
              "userId": "a1f70737-3844-4782-a321-ad481108a8ec"
            },
            {
              "amount": "0.01",
              "userId": "a1f70737-3844-4782-a321-ad481108a8ec"
            },
            {
              "amount": "0.01",
              "userId": "a1f70737-3844-4782-a321-ad481108a8ec"
            },
            {
              "amount": "0.01",
              "userId": "a1f70737-3844-4782-a321-ad481108a8ec"
            }
          ]
        },
        "receipt": {
          "transactionHash": "0xeef52c844f72f41717f025b160a8e6b34ebcd22ea77b5e70fd6ab4c5a42e98af",
          "userOpHash": "0xef7bdb071b1fcfb5df629bd4d27ffa6dc32d0a5df676f26fb8c25311df1185ac"
        }
      }
    }
  ],
  "nextCursor": "2025-04-05T14:01:09.785Z"
}