List POS charges
curl --request GET \
--url https://api.qbank.cl/platform/v1/pos/charges \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/pos/charges"
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/pos/charges', 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/pos/charges",
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/pos/charges"
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/pos/charges")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/pos/charges")
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{
"page": 1,
"page_size": 50,
"charges": [
{
"charge_id": "66773a3a-9911-4482-ae3c-09a481aba018",
"payin_id": "bd3d88ca-af9c-4c05-a6f8-0982a2d187d5",
"status": "paid",
"amount": "25",
"settlement_asset": "USDT",
"crypto": "tron:usdt",
"due": "25.000000",
"received": "25.000000",
"merchant": {
"id": "d2875683-fc80-4c7b-876a-fb585d7c6982",
"name": "La Terraza Restaurant",
"external_ref": "resto-001"
},
"paid_at": "2026-07-17T19:42:00Z",
"expires_at": "2026-07-17T19:55:00Z",
"created_at": "2026-07-17T19:40:00Z"
}
]
}{
"error": "invalid_range",
"message": "invalid from date (YYYY-MM-DD)"
}{
"error": "unauthorized",
"message": "invalid or missing credentials"
}List POS charges
Charges of the account with merchant_id/status filters and a mandatory date range — the per-client reconciliation view.
GET
/
v1
/
pos
/
charges
List POS charges
curl --request GET \
--url https://api.qbank.cl/platform/v1/pos/charges \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/pos/charges"
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/pos/charges', 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/pos/charges",
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/pos/charges"
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/pos/charges")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/pos/charges")
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{
"page": 1,
"page_size": 50,
"charges": [
{
"charge_id": "66773a3a-9911-4482-ae3c-09a481aba018",
"payin_id": "bd3d88ca-af9c-4c05-a6f8-0982a2d187d5",
"status": "paid",
"amount": "25",
"settlement_asset": "USDT",
"crypto": "tron:usdt",
"due": "25.000000",
"received": "25.000000",
"merchant": {
"id": "d2875683-fc80-4c7b-876a-fb585d7c6982",
"name": "La Terraza Restaurant",
"external_ref": "resto-001"
},
"paid_at": "2026-07-17T19:42:00Z",
"expires_at": "2026-07-17T19:55:00Z",
"created_at": "2026-07-17T19:40:00Z"
}
]
}{
"error": "invalid_range",
"message": "invalid from date (YYYY-MM-DD)"
}{
"error": "unauthorized",
"message": "invalid or missing credentials"
}Authorizations
Session JWT (from register/login) or API key (pk_...).
X-API-Key: <token> is accepted as an alternative header.
Query Parameters
Start date (YYYY-MM-DD, UTC, inclusive).
End date (YYYY-MM-DD, UTC, inclusive).
Available options:
pending, paid, expired Required range:
x <= 200Last modified on July 18, 2026
⌘I