List movements
curl --request GET \
--url https://api.qbank.cl/platform/v1/movements \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/movements"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/movements', 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.qbank.cl/platform/v1/movements",
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.qbank.cl/platform/v1/movements"
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.qbank.cl/platform/v1/movements")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/movements")
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{
"account_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"page": 1,
"page_size": 50,
"movements": [
{
"id": "0f1e2d3c-4b5a-6978-8796-a5b4c3d2e1f0",
"asset": "USDT",
"amount": "-86.014286",
"type": "payout_debit",
"reference_type": "payout",
"reference_id": "7d5c2f0a-1e9b-4a6d-8f3c-0b2a1d9e8c7f",
"description": "",
"balance_after": "39.415714",
"created_at": "2026-07-07T12:00:00Z"
},
{
"id": "9a8b7c6d-5e4f-3a2b-1c0d-e9f8a7b6c5d4",
"asset": "USDT",
"amount": "-1.000000",
"type": "wallet_creation_fee",
"reference_type": "crypto_wallet",
"reference_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d:tron:usdt",
"description": "service fee: wallet_creation",
"balance_after": "125.430000",
"created_at": "2026-07-07T12:00:00Z"
}
]
}{
"error": "unauthorized",
"message": "invalid or missing credentials"
}{
"error": "account_required",
"message": "this endpoint requires an account credential"
}List movements
Immutable ledger history of the calling account.
GET
/
v1
/
movements
List movements
curl --request GET \
--url https://api.qbank.cl/platform/v1/movements \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/movements"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/movements', 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.qbank.cl/platform/v1/movements",
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.qbank.cl/platform/v1/movements"
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.qbank.cl/platform/v1/movements")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/movements")
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{
"account_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"page": 1,
"page_size": 50,
"movements": [
{
"id": "0f1e2d3c-4b5a-6978-8796-a5b4c3d2e1f0",
"asset": "USDT",
"amount": "-86.014286",
"type": "payout_debit",
"reference_type": "payout",
"reference_id": "7d5c2f0a-1e9b-4a6d-8f3c-0b2a1d9e8c7f",
"description": "",
"balance_after": "39.415714",
"created_at": "2026-07-07T12:00:00Z"
},
{
"id": "9a8b7c6d-5e4f-3a2b-1c0d-e9f8a7b6c5d4",
"asset": "USDT",
"amount": "-1.000000",
"type": "wallet_creation_fee",
"reference_type": "crypto_wallet",
"reference_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d:tron:usdt",
"description": "service fee: wallet_creation",
"balance_after": "125.430000",
"created_at": "2026-07-07T12:00:00Z"
}
]
}{
"error": "unauthorized",
"message": "invalid or missing credentials"
}{
"error": "account_required",
"message": "this endpoint requires an account credential"
}Authorizations
Session JWT (from register/login) or API key (pk_...).
X-API-Key: <token> is accepted as an alternative header.
Query Parameters
Required range:
x >= 1Required range:
x <= 200Filter by balance currency.
Available options:
USDT, USDC, BTC, GOLD Example:
"USDT"
Filter by ledger entry type.
Available options:
payout_debit, payout_refund, payin_credit, adjustment, transfer_in, transfer_out, funding, withdrawal_debit, withdrawal_refund, compliance_fee, compliance_refund, wallet_creation_fee, wallet_creation_refund, card_debit, card_refund, card_fee, card_fee_refund Filter from this date (YYYY-MM-DD, organization timezone, inclusive).
Filter up to this date (YYYY-MM-DD, organization timezone, inclusive).
Export the same rows as a file: csv or xlsx (accounting-grade download, up to 10,000 rows; same filters and date range). Omit for the JSON view.
Available options:
csv, xlsx Last modified on September 3, 2026