curl --request GET \
--url https://app.sideshift.app/api/embed/accounts/balance \
--header 'x-api-key: <api-key>'import requests
url = "https://app.sideshift.app/api/embed/accounts/balance"
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://app.sideshift.app/api/embed/accounts/balance', 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://app.sideshift.app/api/embed/accounts/balance",
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://app.sideshift.app/api/embed/accounts/balance"
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://app.sideshift.app/api/embed/accounts/balance")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.sideshift.app/api/embed/accounts/balance")
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{
"success": true,
"data": {
"sideshiftAccountId": "acct_a1b2c3d4e5f6",
"balanceCents": 850,
"balanceUsd": 8.5,
"withdrawableBalanceCents": 850,
"withdrawableBalanceUsd": 8.5,
"withdrawalBalanceCents": 850,
"withdrawalBalanceUsd": 8.5,
"walletBalanceCents": 2000,
"walletBalanceUsd": 20,
"paymentBalanceCents": 850,
"paymentBalanceUsd": 8.5,
"totalBalanceCents": 2850,
"totalBalanceUsd": 28.5,
"balanceSource": "payout",
"transactions": [
{
"id": "txn_001",
"type": "transfer_in",
"amountCents": 5000,
"balanceAfterCents": 2000,
"description": "Transfer from company",
"status": "completed",
"createdAt": "2026-03-13T12:00:00.000Z"
}
],
"pagination": {
"total": 12,
"limit": 10,
"offset": 0,
"hasMore": true
},
"summary": {
"lifetimeDepositsCents": 50000,
"lifetimeWithdrawalsCents": 35000,
"lifetimeFeesCents": 150,
"transactionCount": 12
}
}
}Retrieve an account’s current balance, recent transactions, and lifetime summary.
Works for both an account you manage and your own integrator account —
omit sideshiftAccountId (or pass your own company ID) to read your own
company balance (“self balance”).
balanceCents is the withdrawal-ready balance shown in the payout widget.
walletBalanceCents is the SideShift wallet balance and is the source of truth for
sandbox-ledger transfer assertions.
totalBalanceCents is the combined amount across the SideShift wallet and provider
withdrawal-ready layers. Do not use it to certify sandbox transfers: provider payouts
are unsupported in sandbox, so the provider layer does not have production parity.
Transactions are returned newest-first.
curl --request GET \
--url https://app.sideshift.app/api/embed/accounts/balance \
--header 'x-api-key: <api-key>'import requests
url = "https://app.sideshift.app/api/embed/accounts/balance"
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://app.sideshift.app/api/embed/accounts/balance', 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://app.sideshift.app/api/embed/accounts/balance",
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://app.sideshift.app/api/embed/accounts/balance"
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://app.sideshift.app/api/embed/accounts/balance")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.sideshift.app/api/embed/accounts/balance")
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{
"success": true,
"data": {
"sideshiftAccountId": "acct_a1b2c3d4e5f6",
"balanceCents": 850,
"balanceUsd": 8.5,
"withdrawableBalanceCents": 850,
"withdrawableBalanceUsd": 8.5,
"withdrawalBalanceCents": 850,
"withdrawalBalanceUsd": 8.5,
"walletBalanceCents": 2000,
"walletBalanceUsd": 20,
"paymentBalanceCents": 850,
"paymentBalanceUsd": 8.5,
"totalBalanceCents": 2850,
"totalBalanceUsd": 28.5,
"balanceSource": "payout",
"transactions": [
{
"id": "txn_001",
"type": "transfer_in",
"amountCents": 5000,
"balanceAfterCents": 2000,
"description": "Transfer from company",
"status": "completed",
"createdAt": "2026-03-13T12:00:00.000Z"
}
],
"pagination": {
"total": 12,
"limit": 10,
"offset": 0,
"hasMore": true
},
"summary": {
"lifetimeDepositsCents": 50000,
"lifetimeWithdrawalsCents": 35000,
"lifetimeFeesCents": 150,
"transactionCount": 12
}
}
}Authorizations
Your SideShift Connect API key (sk_live_* or sk_test_*). Generate from Settings → Connect.
Query Parameters
Account to query. Defaults to your own integrator account (self balance) when omitted.
Number of transactions to return
1 <= x <= 50Pagination offset
x >= 0