Skip to main content
GET
/
payment
/
api
/
v1
/
custody-wallet
/
{custody_wallet_id}
/
transactions
Get Custody Wallet Transactions
curl --request GET \
  --url https://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions', 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://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$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://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.carbnconnect.com/payment/api/v1/custody-wallet/{custody_wallet_id}/transactions")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "content": [
    {
      "id": "065886c3-491f-4afa-aa38-db1dc9a7ecc1",
      "custody_wallet_id": "c10dad79-4bd8-47f4-933e-4f197c5af680",
      "to_address": "3BsSGETYNCjfULdgYEBVmzwXgaspS6E5pgncJr3bfBeU",
      "crypto": "usdc",
      "source_amount": 1,
      "customer_transaction_id": "51e4f5ee-3a6b-4c0b-8288-1bc0245ff302",
      "destination_amount": 1,
      "txn_hash": "3JKEegZqbJUjqj1SL6iMECkk3x4Wh4DgFeUEJZdg5PTbVFzkAhPMNMZGo86nVrqyKi91YfZNLK7waXhJWX81tZYo",
      "customer_fee": 0,
      "status": "PROCESSED",
      "created_at": "2026-02-02T10:32:39.073021Z",
      "updated_at": "2026-02-02T10:59:43.738664Z"
    }
  ],
  "pageable": {
    "pageNumber": 0,
    "pageSize": 20,
    "sort": {
      "sorted": false,
      "unsorted": true,
      "empty": true
    },
    "offset": 0,
    "paged": true,
    "unpaged": false
  },
  "totalPages": 1,
  "totalElements": 1,
  "last": true,
  "numberOfElements": 1,
  "size": 20,
  "number": 0,
  "sort": {
    "sorted": false,
    "unsorted": true,
    "empty": true
  },
  "first": true,
  "empty": false
}

Authorizations

x-api-key
string
header
required

API key for authentication. Must be included in the x-api-key header.

Path Parameters

custody_wallet_id
string<uuid>
required

The unique identifier of the custody wallet

Query Parameters

page
integer
default:0

Page number (0-indexed)

Required range: x >= 0
size
integer
default:20

Number of items per page

Required range: x >= 1

Response

Transactions retrieved successfully

content
object[]

List of transactions

pageable
object
totalPages
integer

Total number of pages

Example:

1

totalElements
integer

Total number of elements across all pages

Example:

1

last
boolean

Whether this is the last page

Example:

true

numberOfElements
integer

Number of elements in the current page

Example:

1

size
integer

Page size

Example:

20

number
integer

Current page number (0-indexed)

Example:

0

sort
object
first
boolean

Whether this is the first page

Example:

true

empty
boolean

Whether the page is empty

Example:

false