申请 EUR 虚拟 IBAN
curl --request POST \
--url https://api.qbank.cl/platform/v1/banking/virtual-ibans \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"purpose": "funding_usdt",
"idempotency_key": "viban-funding-2026-001"
}
'import requests
url = "https://api.qbank.cl/platform/v1/banking/virtual-ibans"
payload = {
"purpose": "funding_usdt",
"idempotency_key": "viban-funding-2026-001"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({purpose: 'funding_usdt', idempotency_key: 'viban-funding-2026-001'})
};
fetch('https://api.qbank.cl/platform/v1/banking/virtual-ibans', 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/banking/virtual-ibans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'purpose' => 'funding_usdt',
'idempotency_key' => 'viban-funding-2026-001'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.qbank.cl/platform/v1/banking/virtual-ibans"
payload := strings.NewReader("{\n \"purpose\": \"funding_usdt\",\n \"idempotency_key\": \"viban-funding-2026-001\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.qbank.cl/platform/v1/banking/virtual-ibans")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"purpose\": \"funding_usdt\",\n \"idempotency_key\": \"viban-funding-2026-001\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/banking/virtual-ibans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"purpose\": \"funding_usdt\",\n \"idempotency_key\": \"viban-funding-2026-001\"\n}"
response = http.request(request)
puts response.read_body{
"idempotency_hit": true,
"virtual_iban": {
"id": "2f8c1d4e-1111-4b22-8a33-000000000001",
"purpose": "funding_usdt",
"currency": "EUR",
"iban": "DE890000000000000000",
"iban_country": "DE",
"status": "active"
}
}{
"virtual_iban": {
"id": "2f8c1d4e-1111-4b22-8a33-000000000001",
"owner_account_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"manager_account_id": "",
"purpose": "funding_usdt",
"currency": "EUR",
"iban": "",
"iban_country": "",
"status": "pending_approval",
"client_order": "platform:virtual-iban:org:account:funding_usdt:viban-funding-2026-001",
"order_reference": "",
"created_at": "2026-09-10T12:00:00Z",
"updated_at": "2026-09-10T12:00:00Z"
},
"status": "pending_approval"
}申请 EUR 虚拟 IBAN
Requests one durable virtual IBAN allocation for the authenticated account. funding_usdt is the default purpose; banking_eur requires the 银行服务 product. The allocation enters manual approval and does not by itself create a provider balance.
POST
/
v1
/
banking
/
virtual-ibans
申请 EUR 虚拟 IBAN
curl --request POST \
--url https://api.qbank.cl/platform/v1/banking/virtual-ibans \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"purpose": "funding_usdt",
"idempotency_key": "viban-funding-2026-001"
}
'import requests
url = "https://api.qbank.cl/platform/v1/banking/virtual-ibans"
payload = {
"purpose": "funding_usdt",
"idempotency_key": "viban-funding-2026-001"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({purpose: 'funding_usdt', idempotency_key: 'viban-funding-2026-001'})
};
fetch('https://api.qbank.cl/platform/v1/banking/virtual-ibans', 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/banking/virtual-ibans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'purpose' => 'funding_usdt',
'idempotency_key' => 'viban-funding-2026-001'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.qbank.cl/platform/v1/banking/virtual-ibans"
payload := strings.NewReader("{\n \"purpose\": \"funding_usdt\",\n \"idempotency_key\": \"viban-funding-2026-001\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.qbank.cl/platform/v1/banking/virtual-ibans")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"purpose\": \"funding_usdt\",\n \"idempotency_key\": \"viban-funding-2026-001\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/banking/virtual-ibans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"purpose\": \"funding_usdt\",\n \"idempotency_key\": \"viban-funding-2026-001\"\n}"
response = http.request(request)
puts response.read_body{
"idempotency_hit": true,
"virtual_iban": {
"id": "2f8c1d4e-1111-4b22-8a33-000000000001",
"purpose": "funding_usdt",
"currency": "EUR",
"iban": "DE890000000000000000",
"iban_country": "DE",
"status": "active"
}
}{
"virtual_iban": {
"id": "2f8c1d4e-1111-4b22-8a33-000000000001",
"owner_account_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"manager_account_id": "",
"purpose": "funding_usdt",
"currency": "EUR",
"iban": "",
"iban_country": "",
"status": "pending_approval",
"client_order": "platform:virtual-iban:org:account:funding_usdt:viban-funding-2026-001",
"order_reference": "",
"created_at": "2026-09-10T12:00:00Z",
"updated_at": "2026-09-10T12:00:00Z"
},
"status": "pending_approval"
}最后修改于 2026年9月10日