List all batch crypto transfers
curl --request GET \
--url https://production.hifibridge.com/v2/wallets/transfers/batches \
--header 'Authorization: Bearer <token>'import requests
url = "https://production.hifibridge.com/v2/wallets/transfers/batches"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://production.hifibridge.com/v2/wallets/transfers/batches', 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://production.hifibridge.com/v2/wallets/transfers/batches",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://production.hifibridge.com/v2/wallets/transfers/batches"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://production.hifibridge.com/v2/wallets/transfers/batches")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production.hifibridge.com/v2/wallets/transfers/batches")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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"
}{
"code": 123,
"error": "<string>",
"errorDetails": "<string>"
}{
"status": "error",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"code": 123,
"error": "<string>",
"errorDetails": "<string>"
}Wallet Transfers
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
List all batch crypto transfers
curl --request GET \
--url https://production.hifibridge.com/v2/wallets/transfers/batches \
--header 'Authorization: Bearer <token>'import requests
url = "https://production.hifibridge.com/v2/wallets/transfers/batches"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://production.hifibridge.com/v2/wallets/transfers/batches', 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://production.hifibridge.com/v2/wallets/transfers/batches",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://production.hifibridge.com/v2/wallets/transfers/batches"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://production.hifibridge.com/v2/wallets/transfers/batches")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production.hifibridge.com/v2/wallets/transfers/batches")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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"
}{
"code": 123,
"error": "<string>",
"errorDetails": "<string>"
}{
"status": "error",
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"code": 123,
"error": "<string>",
"errorDetails": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
The user ID.
default to 10, maximum to 100
ISO format: YYYY-MM-DD
ISO format: YYYY-MM-DD
⌘I