Get transactions statement
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/statements/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.enterprise.sandbox.uphold.com/core/statements/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.enterprise.sandbox.uphold.com/core/statements/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.enterprise.sandbox.uphold.com/core/statements/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 => [
"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://api.enterprise.sandbox.uphold.com/core/statements/transactions"
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://api.enterprise.sandbox.uphold.com/core/statements/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enterprise.sandbox.uphold.com/core/statements/transactions")
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{
"statement": {
"period": {
"from": "2026-03-01T00:00:00.000Z",
"to": "2026-03-31T23:59:59.999Z"
},
"transactions": [
{
"rates": {
"GBP-EUR": "1.15",
"BTC-EUR": "60460.77"
},
"transaction": {
"id": "8daa6dbd-21a0-4305-93c3-bd1d04bc575c",
"origin": {
"amount": "100",
"asset": "GBP",
"rate": "53484.17885426114102547488",
"node": {
"id": "d3401ecb-60dd-4d35-975b-1dfb58c0ba1a",
"network": "sepa",
"ownerId": "5d894b41-270e-4162-a4f9-dae31bc53b1c",
"type": "external-account"
}
},
"destination": {
"amount": "0.00186036",
"asset": "BTC",
"rate": "0.00001869711794070723",
"node": {
"id": "9287ee0a-0bcb-43cf-9791-f96bb49ba3fb",
"ownerId": "5d894b41-270e-4162-a4f9-dae31bc53b1c",
"type": "account"
}
},
"denomination": {
"amount": "100",
"asset": "GBP",
"target": "origin",
"rate": "1"
},
"fees": [
{
"amount": "0.5",
"asset": "GBP",
"code": "uphold",
"type": "deposit"
}
],
"status": "completed",
"quotedAt": "2026-03-23T11:57:00.000Z",
"createdAt": "2026-03-23T11:58:00.000Z",
"updatedAt": "2026-03-23T12:06:55.116Z",
"completedAt": "2026-03-23T12:06:55.116Z"
}
}
]
},
"pagination": {
"first": "https://api.enterprise.uphold.com/core/statements/transactions?denomination=EUR&period=one-month&year=2026&month=3&page=1&perPage=10",
"next": "https://api.enterprise.uphold.com/core/statements/transactions?denomination=EUR&period=one-month&year=2026&month=3&page=2&perPage=10"
}
}
Statements
Get transactions statement
Retrieves the transactions statement for a given period.
GET
/
core
/
statements
/
transactions
Get transactions statement
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/core/statements/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.enterprise.sandbox.uphold.com/core/statements/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.enterprise.sandbox.uphold.com/core/statements/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.enterprise.sandbox.uphold.com/core/statements/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 => [
"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://api.enterprise.sandbox.uphold.com/core/statements/transactions"
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://api.enterprise.sandbox.uphold.com/core/statements/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enterprise.sandbox.uphold.com/core/statements/transactions")
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{
"statement": {
"period": {
"from": "2026-03-01T00:00:00.000Z",
"to": "2026-03-31T23:59:59.999Z"
},
"transactions": [
{
"rates": {
"GBP-EUR": "1.15",
"BTC-EUR": "60460.77"
},
"transaction": {
"id": "8daa6dbd-21a0-4305-93c3-bd1d04bc575c",
"origin": {
"amount": "100",
"asset": "GBP",
"rate": "53484.17885426114102547488",
"node": {
"id": "d3401ecb-60dd-4d35-975b-1dfb58c0ba1a",
"network": "sepa",
"ownerId": "5d894b41-270e-4162-a4f9-dae31bc53b1c",
"type": "external-account"
}
},
"destination": {
"amount": "0.00186036",
"asset": "BTC",
"rate": "0.00001869711794070723",
"node": {
"id": "9287ee0a-0bcb-43cf-9791-f96bb49ba3fb",
"ownerId": "5d894b41-270e-4162-a4f9-dae31bc53b1c",
"type": "account"
}
},
"denomination": {
"amount": "100",
"asset": "GBP",
"target": "origin",
"rate": "1"
},
"fees": [
{
"amount": "0.5",
"asset": "GBP",
"code": "uphold",
"type": "deposit"
}
],
"status": "completed",
"quotedAt": "2026-03-23T11:57:00.000Z",
"createdAt": "2026-03-23T11:58:00.000Z",
"updatedAt": "2026-03-23T12:06:55.116Z",
"completedAt": "2026-03-23T12:06:55.116Z"
}
}
]
},
"pagination": {
"first": "https://api.enterprise.uphold.com/core/statements/transactions?denomination=EUR&period=one-month&year=2026&month=3&page=1&perPage=10",
"next": "https://api.enterprise.uphold.com/core/statements/transactions?denomination=EUR&period=one-month&year=2026&month=3&page=2&perPage=10"
}
}
Authorizations
OAuth 2.0 authentication.
Query Parameters
The statement period type.
Available options:
one-month The statement year.
Required range:
2010 <= x <= 2100The statement month.
Required range:
1 <= x <= 12Specifies the asset code to use as the denomination for value conversion. If not provided, USD is used by default.
Minimum string length:
1The number of items per page.
Required range:
1 <= x <= 100Was this page helpful?
⌘I